diff options
author | Siran Wang <siran.wang@mongodb.com> | 2021-02-25 11:56:56 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-02-26 16:37:51 +0000 |
commit | f589354f0fe82b2fd489ea13e76acd163120aeb6 (patch) | |
tree | f8252011f748259999f3f5ff03b4d3787e04d09d /buildscripts/resmokelib/hang_analyzer | |
parent | 8b9167a79df87ee0b0c5b761108cae6a1a232050 (diff) | |
download | mongo-f589354f0fe82b2fd489ea13e76acd163120aeb6.tar.gz |
SERVER-53456 let hang_analyzer target only c++ process
Diffstat (limited to 'buildscripts/resmokelib/hang_analyzer')
-rwxr-xr-x | buildscripts/resmokelib/hang_analyzer/hang_analyzer.py | 7 |
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 = [] |