[TEST] Suppress exception in Watcher benchmark

Original commit: elastic/x-pack-elasticsearch@099cad0ac1
This commit is contained in:
Yannick Welsch 2016-03-15 16:48:14 +01:00
parent 85b3f13f29
commit 0136f16ce7
1 changed files with 1 additions and 3 deletions

View File

@ -169,9 +169,7 @@ public class WatcherScheduleEngineBenchmark {
jvmUsedHeapSpace.inc(heapUsed.bytes());
Thread.sleep(1000);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (InterruptedException ignored) {}
}
});
sampleThread.start();