This is an automated email from the ASF dual-hosted git repository.
bschuchardt pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new d773cfd GEODE-4983 PluckStacks is no longer detecting idle executors
and weeding them out
d773cfd is described below
commit d773cfd91170f288dc2eea47b6603680a983ed37
Author: Bruce Schuchardt <[email protected]>
AuthorDate: Tue Apr 3 10:08:52 2018 -0700
GEODE-4983 PluckStacks is no longer detecting idle executors and weeding
them out
fixing check for idle executors
---
.../src/main/java/org/apache/geode/internal/util/PluckStacks.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/geode-core/src/main/java/org/apache/geode/internal/util/PluckStacks.java
b/geode-core/src/main/java/org/apache/geode/internal/util/PluckStacks.java
index 6c77121..16a1267 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/util/PluckStacks.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/util/PluckStacks.java
@@ -458,6 +458,8 @@ public class PluckStacks {
return true; // View Message Processor
if (size > 6 && thread.get(size - 6).contains("getTask"))
return true; // View Message Processor
+ if (size > 7 && thread.get(size - 7).contains("getTask"))
+ return true; // View Message Processor
return false;
}
--
To stop receiving notification emails like this one, please contact
[email protected].