From 9981ce1749068cfb3a79fb37276ee9247df70569 Mon Sep 17 00:00:00 2001 From: Mark Robert Miller Date: Sat, 24 Oct 2015 18:22:23 +0000 Subject: [PATCH] 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 --- .../src/java/org/apache/solr/cloud/ChaosMonkey.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solr/test-framework/src/java/org/apache/solr/cloud/ChaosMonkey.java b/solr/test-framework/src/java/org/apache/solr/cloud/ChaosMonkey.java index c3ea9760546..083e8959c1c 100644 --- a/solr/test-framework/src/java/org/apache/solr/cloud/ChaosMonkey.java +++ b/solr/test-framework/src/java/org/apache/solr/cloud/ChaosMonkey.java @@ -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!"); } }