Commit 53884a82 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Slightly different timing.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4047 b35dd754-fafc-0310-a699-88a17e54d16e
parent db214589
......@@ -79,10 +79,10 @@ public class PluginManager {
// See if we're in development mode. If so, check for new plugins once every 5 seconds.
// Otherwise, default to every 30 seconds.
if (Boolean.getBoolean("developmentMode")) {
executor.scheduleWithFixedDelay(new PluginMonitor(), 0, 5, TimeUnit.SECONDS);
executor.scheduleWithFixedDelay(new PluginMonitor(), 1, 5, TimeUnit.SECONDS);
}
else {
executor.scheduleWithFixedDelay(new PluginMonitor(), 0, 20, TimeUnit.SECONDS);
executor.scheduleWithFixedDelay(new PluginMonitor(), 1, 20, TimeUnit.SECONDS);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment