summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/hang_analyzer
diff options
context:
space:
mode:
authorSiran Wang <siran.wang@mongodb.com>2021-02-25 11:56:56 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-26 16:37:51 +0000
commitf589354f0fe82b2fd489ea13e76acd163120aeb6 (patch)
treef8252011f748259999f3f5ff03b4d3787e04d09d /buildscripts/resmokelib/hang_analyzer
parent8b9167a79df87ee0b0c5b761108cae6a1a232050 (diff)
downloadmongo-f589354f0fe82b2fd489ea13e76acd163120aeb6.tar.gz
SERVER-53456 let hang_analyzer target only c++ process
Diffstat (limited to 'buildscripts/resmokelib/hang_analyzer')
-rwxr-xr-xbuildscripts/resmokelib/hang_analyzer/hang_analyzer.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/hang_analyzer/hang_analyzer.py b/buildscripts/resmokelib/hang_analyzer/hang_analyzer.py
index 268dd58e84c..68ae72e716d 100755
--- a/buildscripts/resmokelib/hang_analyzer/hang_analyzer.py
+++ b/buildscripts/resmokelib/hang_analyzer/hang_analyzer.py
@@ -41,7 +41,12 @@ class HangAnalyzer(Subcommand):
self.options = options
self.root_logger = None
self.interesting_processes = [
- "mongo", "mongod", "mongos", "_test", "dbtest", "python", "java"
+ # Remove "python", "java" from the list to avoid hang analyzer multiple invocations
+ "mongo",
+ "mongod",
+ "mongos",
+ "_test",
+ "dbtest"
]
self.go_processes = []
self.process_ids = []