# Hotfix
* changes randomly created code verifier into static one to avoid authentication conflicts on multi process deployment (where each process generates an own verifier...)
This commit is contained in:
parent
8feb24e70f
commit
d31f997a58
@ -15,11 +15,7 @@ SSO_PRIVATE_KEY = "CHANGE_ME"
|
||||
SSO_PUBLIC_KEY = "CHANGE_ME"
|
||||
|
||||
# OAuth settings
|
||||
OAUTH_CODE_VERIFIER = ''.join(
|
||||
random.choice(
|
||||
string.ascii_uppercase + string.digits
|
||||
) for _ in range(random.randint(43, 128))
|
||||
)
|
||||
OAUTH_CODE_VERIFIER = "CHANGE_ME"
|
||||
|
||||
OAUTH_CLIENT_ID = "CHANGE_ME"
|
||||
OAUTH_CLIENT_SECRET = "CHANGE_ME"
|
Loading…
Reference in New Issue
Block a user