From 10b5a107289b014e488aee0279af411c462f49bb Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 2 Mar 2020 14:22:51 -0500 Subject: [PATCH] Jobs that error should trigger us to to update the Recent Jobs list along with successful/failed/canceled --- awx/ui/client/src/home/home.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/home/home.controller.js b/awx/ui/client/src/home/home.controller.js index 2a0228c124..cef2324fd0 100644 --- a/awx/ui/client/src/home/home.controller.js +++ b/awx/ui/client/src/home/home.controller.js @@ -108,7 +108,7 @@ export default ['$scope','Wait', '$timeout', 'i18n', }; $scope.$on('ws-jobs', function (e, msg) { - if (msg.status === 'successful' || msg.status === 'failed' || msg.status === 'canceled') { + if (msg.status === 'successful' || msg.status === 'failed' || msg.status === 'canceled' || msg.status === 'error') { newJobs.push(msg.unified_job_id); if (!newJobsTimerRunning) { fetchNewJobs();