diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js index 40a5d4dce4..8069b2f7dc 100644 --- a/etc/status/public_html/jquery.zuul.js +++ b/etc/status/public_html/jquery.zuul.js @@ -682,7 +682,10 @@ data.result_event_queue.length : '0' ); }) - .fail(function (err, jqXHR, errMsg) { + .fail(function (jqXHR, statusText, errMsg) { + if (statusText === 'abort') { + return; + } $msg.text(options.source + ': ' + errMsg) .addClass('alert-danger') .removeClass('zuul-msg-wrap-off')