Schedule at 1min instead of 10min.

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2014-12-03 11:35:38 -08:00
parent 30933d792b
commit f401f9a674
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class FeedbackHandler implements Managed, Runnable {
@Override
public void start() throws Exception {
this.executor = Executors.newSingleThreadScheduledExecutor();
this.executor.scheduleAtFixedRate(this, 0, 10, TimeUnit.MINUTES);
this.executor.scheduleAtFixedRate(this, 0, 1, TimeUnit.MINUTES);
}
@Override