diff --git a/platform/core-impl/src/com/intellij/diagnostic/PerformanceWatcher.java b/platform/core-impl/src/com/intellij/diagnostic/PerformanceWatcher.java index f5d0b15fb6db..52212972e218 100644 --- a/platform/core-impl/src/com/intellij/diagnostic/PerformanceWatcher.java +++ b/platform/core-impl/src/com/intellij/diagnostic/PerformanceWatcher.java @@ -92,7 +92,7 @@ public class PerformanceWatcher implements ApplicationComponent { + "-" + ApplicationInfo.getInstance().getBuild().asString()); myPublisher = ApplicationManager.getApplication().getMessageBus().syncPublisher(IdePerformanceListener.TOPIC); myThreadMXBean = ManagementFactory.getThreadMXBean(); - myThread = JobScheduler.getScheduler().scheduleAtFixedRate(new Runnable() { + myThread = JobScheduler.getScheduler().scheduleWithFixedDelay(new Runnable() { @Override public void run() { checkEDTResponsiveness();