Author: jfthomps
Date: Mon May 21 19:04:35 2012
New Revision: 1341150
URL: http://svn.apache.org/viewvc?rev=1341150&view=rev
Log:
VCL-568
refresh current reservations page 15 minutes after a reservation becomes
available
requests.js: modified checkTimeouts - changed to reload after 16 minutes to
account for vcld looping until vcld basis timeouts on logs instead of loop count
Modified:
incubator/vcl/trunk/web/js/requests.js
Modified: incubator/vcl/trunk/web/js/requests.js
URL:
http://svn.apache.org/viewvc/incubator/vcl/trunk/web/js/requests.js?rev=1341150&r1=1341149&r2=1341150&view=diff
==============================================================================
--- incubator/vcl/trunk/web/js/requests.js (original)
+++ incubator/vcl/trunk/web/js/requests.js Mon May 21 19:04:35 2012
@@ -274,7 +274,8 @@ function setMaxRequestLength(minutes) {
}
function checkTimeouts() {
- var nextcheck = 15;
+ // TODO set nextcheck to 15 once VCL-568 is completed in vcld
+ var nextcheck = 16;
var nodes = dojo.query('.timeoutvalue');
var tmp = new Date();
var now = (tmp.getTime() - tmp.getMilliseconds()) / 1000;