Skip to content

Commit

Permalink
Merge pull request #935 from GSA/main
Browse files Browse the repository at this point in the history
04/18/2024 Production Deploy
  • Loading branch information
ccostino authored Apr 18, 2024
2 parents 5e49883 + 8414fd2 commit 8e198ae
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 93 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ jobs:
- uses: pypa/[email protected]
with:
inputs: requirements.txt
ignore-vulns: |
GHSA-w3h3-4rj7-4ph4

static-scan:
runs-on: ubuntu-latest
Expand Down
5 changes: 0 additions & 5 deletions app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,6 @@ class Config(object):
"schedule": timedelta(minutes=66),
"options": {"queue": QueueNames.PERIODIC},
},
"check-db-notification-fails": {
"task": "check-db-notification-fails",
"schedule": crontab(minute="18, 48"),
"options": {"queue": QueueNames.PERIODIC},
},
"check-job-status": {
"task": "check-job-status",
"schedule": crontab(),
Expand Down
3 changes: 2 additions & 1 deletion app/dao/users_dao.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def get_login_gov_user(login_uuid, email_address):

return user
# Remove this 1 July 2025, all users should have login.gov uuids by now
user = User.query.filter_by(email_address=email_address).first()
user = User.query.filter(User.email_address.ilike(email_address)).first()

if user:
save_user_attribute(user, {"login_uuid": login_uuid})
return user
Expand Down
Loading

0 comments on commit 8e198ae

Please sign in to comment.