Merge pull request #851 from Arcadelia/Job-cleanup-fix

Fixed too frequent job cleanups
This commit is contained in:
Tom Morris 2014-04-20 23:35:50 -04:00
commit cff4507008

View File

@ -110,7 +110,7 @@ public class ImportingManager {
static private ScheduledExecutorService service;
final static private long TIMER_PERIOD = 10; // 10 minutes
final static private long STALE_PERIOD = 60; // 60 minutes
final static private long STALE_PERIOD = 60 * 60 * 1000; // 60 minutes in milliseconds
static private class CleaningTimerTask implements Runnable {
@Override