diff --git a/awx/ui/static/js/app.js b/awx/ui/static/js/app.js index 475bdf3909..0940ef32ab 100644 --- a/awx/ui/static/js/app.js +++ b/awx/ui/static/js/app.js @@ -646,7 +646,7 @@ angular.module('Tower', [ // monitor socket status checkCount = 0; setInterval(function() { - if (sock.checkStatus() === 'error' || checkCount > 2) { + if (sock.checkStatus() === 'error' || checkCount > 5) { // there's an error or we're stuck in a 'connecting' state. attempt to reconnect $log.debug('socket status: ' + sock.checkStatus()); $log.debug('attempting new socket connection'); @@ -660,7 +660,7 @@ angular.module('Tower', [ else { checkCount = 0; } - }, 3000); + }, 5000); }); if (!$AnsibleConfig) {