Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document auto-login disabling #1127

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

Documentation
~~~~~~~~~~~~~

- Updated GlobusAppConfig docs to explain how to disable auto-login. (:pr:`NUMBER`)

5 changes: 3 additions & 2 deletions src/globus_sdk/globus_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ class GlobusAppConfig:
Explicit values must be pre-registered on your client
`here <https://app.globus.org/settings/developers>`_.

:ivar ``TokenValidationErrorHandler`` token_validation_error_handler: A handler
invoked to resolve errors raised during token validation.
:ivar ``TokenValidationErrorHandler`` | None token_validation_error_handler: A
handler invoked to resolve errors raised during token validation. Set this to
``None`` to disable auto-login on service token validation errors.
Default: ``resolve_by_login_flow`` (runs a login flow, storing the resulting
tokens).

Expand Down
Loading