Merge pull request #1377 from dod-ccpo/secure-session-bug

Fix bug in setting Secure on session cookie.
This commit is contained in:
dandds 2020-01-31 09:51:37 -05:00 committed by GitHub
commit 36da6fff32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,6 +193,7 @@ def map_config(config):
"CONTRACT_END_DATE": datetime.strptime(
config.get("default", "CONTRACT_END_DATE"), "%Y-%m-%d"
).date(),
"SESSION_COOKIE_SECURE": config.getboolean("default", "SESSION_COOKIE_SECURE"),
}