From e2aa7be9ce0e5e7cc224d70ccd87b8d9be8ad22b Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Fri, 13 Jun 2014 16:43:03 -0400 Subject: [PATCH] Job detail page refactor Added an event queue, allowing the UI to process events as fast as it can and hopefully not get overwhelmed by the API. --- awx/ui/static/js/helpers/JobDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/JobDetail.js b/awx/ui/static/js/helpers/JobDetail.js index acef8cf254..6da6df434c 100644 --- a/awx/ui/static/js/helpers/JobDetail.js +++ b/awx/ui/static/js/helpers/JobDetail.js @@ -68,7 +68,7 @@ function($log, UpdatePlayStatus, UpdateHostStatus, AddHostResult, SelectPlay, Se scope.$emit('ProcessEvent', event[0]); } } - }, 2000); + }, 500); } });