SOLR-8129: Raise no kill by monkey warning from 30 to 45.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1710371 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2015-10-24 18:22:23 +00:00
parent b9ac587c32
commit 9981ce1749
1 changed files with 2 additions and 2 deletions

View File

@ -535,8 +535,8 @@ public class ChaosMonkey {
DirectUpdateHandler2.commitOnClose = true;
double runtime = runTimer.getTime()/1000.0f;
if (runtime > 30 && stops.get() == 0) {
LuceneTestCase.fail("The Monkey ran for over 30 seconds and no jetties were stopped - this is worth investigating!");
if (runtime > 45 && stops.get() == 0) {
LuceneTestCase.fail("The Monkey ran for over 45 seconds and no jetties were stopped - this is worth investigating!");
}
}