SOLR-11423: fix typo

This commit is contained in:
Scott Blum 2017-11-02 18:26:59 -04:00
parent 42cc1c07f7
commit 0637407ea4
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ public class ZkDistributedQueue implements DistributedQueue {
}
// Allow this client to push up to 1% of the remaining queue capacity without rechecking.
offerPermits.set(maxQueueSize - stat.getNumChildren() / 100);
offerPermits.set(remainingCapacity / 100);
}
}