diff --git a/onadata/settings/base.py b/onadata/settings/base.py index 0ccd2e3d4..4202e67ed 100644 --- a/onadata/settings/base.py +++ b/onadata/settings/base.py @@ -488,7 +488,9 @@ def skip_suspicious_operations(record): 'SCOPES': { 'read': 'Read scope', 'write': 'Write scope', - 'groups': 'Access to your groups'} + 'groups': 'Access to your groups' + }, + 'PKCE_REQUIRED' : False, } # All registration should be done through KPI, so Django Registration should @@ -682,7 +684,7 @@ def skip_suspicious_operations(record): ################################ CELERY_BROKER_URL = os.environ.get( - 'KOBOCAT_BROKER_URL', 'redis://localhost:6389/2') + 'KOBOCAT_BROKER_URL', 'redis://localhost:6379/2') CELERY_RESULT_BACKEND = CELERY_BROKER_URL