From: <ath...@us...> - 2014-03-26 15:58:06
|
Revision: 1587 http://sourceforge.net/p/webassembletool/code/1587 Author: athaveau Date: 2014-03-26 15:58:02 +0000 (Wed, 26 Mar 2014) Log Message: ----------- Delay configuration Modified Paths: -------------- trunk/esigate-core/src/main/java/org/esigate/extension/ConfigReloadOnChange.java Modified: trunk/esigate-core/src/main/java/org/esigate/extension/ConfigReloadOnChange.java =================================================================== --- trunk/esigate-core/src/main/java/org/esigate/extension/ConfigReloadOnChange.java 2014-03-26 15:54:59 UTC (rev 1586) +++ trunk/esigate-core/src/main/java/org/esigate/extension/ConfigReloadOnChange.java 2014-03-26 15:58:02 UTC (rev 1587) @@ -102,10 +102,10 @@ // Load configuration try { // Try to convert as long - long configDelay = CONFIG_RELOAD_DELAY.getValue(properties); + delay = CONFIG_RELOAD_DELAY.getValue(properties); // Do not watch faster than SPEED_LIMIT - if (configDelay < SPEED_LIMIT) { + if (delay < SPEED_LIMIT) { delay = SPEED_LIMIT; } } catch (NumberFormatException e) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |