Skip to content

Commit

Permalink
Merge pull request #1354 from GSA/notify-admin-1976
Browse files Browse the repository at this point in the history
Bug: Invites expiring immediately
  • Loading branch information
ccostino authored Oct 3, 2024
2 parents f87e710 + f720b48 commit e6cf8a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/service_invite/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _create_service_invite(invited_user, invite_link_host):
redis_store.set(
f"email-personalisation-{saved_notification.id}",
json.dumps(personalisation),
ex=1800,
ex=2*24*60*60,
)
send_notification_to_queue(saved_notification, queue=QueueNames.NOTIFY)

Expand Down

0 comments on commit e6cf8a9

Please sign in to comment.