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

@@ -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);
}
});
})();