Skip to content

Commit

Permalink
Merge pull request #217 from compute-tooling/inc-timeout
Browse files Browse the repository at this point in the history
Inrease polling interval from 1 sec to 5 secs
  • Loading branch information
hdoupe authored Oct 4, 2019
2 parents 3c7a2d4 + 453a60d commit 967964a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/comp/not_ready.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ <h4 class="text-center mt-5">
insertEta(data.eta, data.origEta);
setTimeout(function() {
window.location.reload(1);
}, 7000);
}, 1000);
}
}
});
}
ajaxEta();
setInterval(ajaxEta, 1000);
setInterval(ajaxEta, 5000);
});
</script>
{% endblock %}

0 comments on commit 967964a

Please sign in to comment.