SOLR-5608: Boost wait from 100ms to 300ms

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1559724 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2014-01-20 15:04:38 +00:00
parent a136d320b9
commit 784ccd1f21
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ public class OverseerCollectionProcessor implements Runnable, ClosableThread {
Thread.sleep(100);
removed = !zkStateReader.getClusterState().hasCollection(message.getStr(collection));
if (removed) {
Thread.sleep(100); // just a bit of time so it's more likely other
Thread.sleep(300); // just a bit of time so it's more likely other
// readers see on return
break;
}