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

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1559788 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2014-01-20 17:33:38 +00:00
parent 43557d0c95
commit fad37f1984
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(300); // just a bit of time so it's more likely other
Thread.sleep(500); // just a bit of time so it's more likely other
// readers see on return
break;
}