Skip to content

Commit

Permalink
Merge pull request #1728 from GSA/notify-compliance-46d
Browse files Browse the repository at this point in the history
another tweak for session management
  • Loading branch information
ccostino authored Jul 16, 2024
2 parents b9e86f2 + 3922593 commit 2088a30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/notify_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ def check_inactive_user(self, *args):
or "/email-code" in arg
):
still_signing_in = True

# This seems to be a weird edge case that happens intermittently with invites
if str(arg) == "()":
still_signing_in = True
# TODO: Update this once E2E tests are managed by a feature flag or some other main config option.
if os.getenv("NOTIFY_E2E_TEST_EMAIL"):
# allow end-to-end tests to skip check
Expand Down
1 change: 1 addition & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2088a30

Please sign in to comment.