No longer show warning notification when userlog retrieve fails

This commit is contained in:
Oliver Gorwits
2014-02-22 12:22:44 +00:00
parent 1edf485ec7
commit 5623422452
2 changed files with 3 additions and 2 deletions

View File

@@ -24,6 +24,7 @@
* Fix "list IPs never seen" to work without daterange in IP Inventory Report
* Correct "Archive" status of nodes in IP Inventory Report
* Do not trigger userlog popups for all/walk jobs
* No longer show warning notification when userlog retrieve fails
2.023002 - 2014-02-17

View File

@@ -83,8 +83,8 @@ $(document).ready(function() {
setTimeout(worker, 5000);
}
,error: function() {
// after one failure, don't try again
toastr.warning('Unable to retrieve change request log')
// after failure, try less often
setTimeout(worker, 60000);
}
});
})();