ACCUMULO-2997 Adding in ticket ref.
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/37af8679 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/37af8679 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/37af8679 Branch: refs/heads/1.6.1-SNAPSHOT Commit: 37af86793dff954bc99e44037d122aaa91e44076 Parents: e2b2676 Author: Josh Elser <els...@apache.org> Authored: Tue Jul 15 20:46:18 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Tue Jul 15 20:46:18 2014 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/server/util/TServerUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/37af8679/server/src/main/java/org/apache/accumulo/server/util/TServerUtils.java ---------------------------------------------------------------------- diff --git a/server/src/main/java/org/apache/accumulo/server/util/TServerUtils.java b/server/src/main/java/org/apache/accumulo/server/util/TServerUtils.java index f185661..367baa2 100644 --- a/server/src/main/java/org/apache/accumulo/server/util/TServerUtils.java +++ b/server/src/main/java/org/apache/accumulo/server/util/TServerUtils.java @@ -232,7 +232,7 @@ public class TServerUtils { if (pool.getCorePoolSize() > pool.getActiveCount() + 3) { int smaller = Math.max(numThreads, pool.getCorePoolSize() - 1); if (smaller != pool.getCorePoolSize()) { - // there is a race condition here... the active count could be higher by the time + // ACCUMULO-2997 there is a race condition here... the active count could be higher by the time // we decrease the core pool size... so the active count could end up higher than // the core pool size, in which case everything will be queued... the increase case // should handle this and prevent deadlock