Skip to content

Commit

Permalink
set cookie age to 180
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin White committed Jan 14, 2025
1 parent a11fbb0 commit 53f66ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions revengine/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,5 +684,5 @@ class CurrencyDict(TypedDict):
# See DEV-5249 and related for more details.
DUMMY_PAYMENT_METHOD_ID = os.getenv("DUMMY_PAYMENT_METHOD_ID", "pm_this_is_temp_for_2445")

# 1 minute. We're doing this so we can test theory about CSRF error we're seeing
CSRF_COOKIE_AGE = 60
# 3 minutes. We're doing this so we can test theory about CSRF error we're seeing
CSRF_COOKIE_AGE = 180

0 comments on commit 53f66ca

Please sign in to comment.