From 337eaf2d1bd94404ecefd885c2087eac937b3bca Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Tue, 5 Nov 2013 17:39:42 +0000 Subject: [PATCH] Set default config.js timeout to 1800 seconds. --- awx/ui/static/js/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/config.js b/awx/ui/static/js/config.js index ae6fbec83d..de96f58480 100644 --- a/awx/ui/static/js/config.js +++ b/awx/ui/static/js/config.js @@ -21,6 +21,6 @@ var $AnsibleConfig = // > password_strength = green // It also controls password validation. Passwords are rejected if the score is not > password_strength. - session_timeout: 15 // Number of seconds before an inactive session is automatically timed out and forced to log in again. + session_timeout: 1800 // Number of seconds before an inactive session is automatically timed out and forced to log in again. // Separate from time out value set in API. }