diff --git a/Netdisco/Changes b/Netdisco/Changes index 078ed11c..04fbef3a 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -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 diff --git a/Netdisco/share/public/javascripts/netdisco_portcontrol.js b/Netdisco/share/public/javascripts/netdisco_portcontrol.js index 9426d46e..e05eca43 100644 --- a/Netdisco/share/public/javascripts/netdisco_portcontrol.js +++ b/Netdisco/share/public/javascripts/netdisco_portcontrol.js @@ -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); } }); })();