From 055c02072fc5b021dcf4e538b465d13430611b65 Mon Sep 17 00:00:00 2001 From: Graham Mainwaring Date: Wed, 18 Dec 2019 15:13:46 -0500 Subject: [PATCH] Default LOGIN_REDIRECT_URL should be blank, not null --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 08aa4f73f6..180a447030 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -375,7 +375,7 @@ AUTH_BASIC_ENABLED = True # If set, specifies a URL that unauthenticated users will be redirected to # when trying to access a UI page that requries authentication. -LOGIN_REDIRECT_OVERRIDE = None +LOGIN_REDIRECT_OVERRIDE = '' # If set, serve only minified JS for UI. USE_MINIFIED_JS = False