diff --git a/src/main/html/webapp/components/core/job/detail/detail.js b/src/main/html/webapp/components/core/job/detail/detail.js
index 147973c7..1722a68e 100644
--- a/src/main/html/webapp/components/core/job/detail/detail.js
+++ b/src/main/html/webapp/components/core/job/detail/detail.js
@@ -186,7 +186,7 @@ export default Control.extend({
if (JobRefresher.needsUpdate(currentJob) && that.active) {
setTimeout(function() {
that.refresh();
- }, 5000);
+ }, 20000);
} else {
// updates details (results, startTime, endTime, ...)
JobDetails.findOne({
diff --git a/src/main/html/webapp/components/core/job/list/list.js b/src/main/html/webapp/components/core/job/list/list.js
index 63f886bf..388ad22a 100644
--- a/src/main/html/webapp/components/core/job/list/list.js
+++ b/src/main/html/webapp/components/core/job/list/list.js
@@ -135,7 +135,7 @@ var JobRefresher = Control({
if (JobRefresher.needsUpdate(currentJob) && that.active) {
setTimeout(function() {
that.refresh();
- }, 5000);
+ }, 20000);
}
}, function(response) {
new ErrorPage(that.element, response);