diff --git a/dashboard-ui/scripts/remotecontrol.js b/dashboard-ui/scripts/remotecontrol.js index a198c7a79..432e31674 100644 --- a/dashboard-ui/scripts/remotecontrol.js +++ b/dashboard-ui/scripts/remotecontrol.js @@ -220,7 +220,7 @@ clearInterval(pollInterval); pollInterval = null; } - pollInterval = setInterval(onPollIntervalFired, 1500); + pollInterval = setInterval(onPollIntervalFired, 5000); }; function unsubscribeFromPlayerUpdates() { diff --git a/dashboard-ui/scripts/scheduledtaskspage.js b/dashboard-ui/scripts/scheduledtaskspage.js index d177f1267..e32433af5 100644 --- a/dashboard-ui/scripts/scheduledtaskspage.js +++ b/dashboard-ui/scripts/scheduledtaskspage.js @@ -211,7 +211,7 @@ if (pollInterval) { clearInterval(pollInterval); } - pollInterval = setInterval(onPollIntervalFired, 1500); + pollInterval = setInterval(onPollIntervalFired, 5000); } function stopInterval() { diff --git a/dashboard-ui/scripts/taskbutton.js b/dashboard-ui/scripts/taskbutton.js index 26ab8d09d..a2920f276 100644 --- a/dashboard-ui/scripts/taskbutton.js +++ b/dashboard-ui/scripts/taskbutton.js @@ -132,7 +132,7 @@ $.fn.taskButton = function (options) { if (pollInterval) { clearInterval(pollInterval); } - pollInterval = setInterval(onPollIntervalFired, 1500); + pollInterval = setInterval(onPollIntervalFired, 5000); } function stopInterval() {