We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551dd35 commit 95a2872Copy full SHA for 95a2872
buildscripts/resmokelib/hang_analyzer/hang_analyzer.py
@@ -185,7 +185,8 @@ def _configure_processes(self):
185
if self.options.debugger_output is None:
186
self.options.debugger_output = ['stdout']
187
188
- if self.options.process_ids is not None:
+ # add != "" check to avoid empty process_ids
189
+ if self.options.process_ids is not None and self.options.process_ids != "":
190
# self.process_ids is an int list of PIDs
191
self.process_ids = [int(pid) for pid in self.options.process_ids.split(',')]
192
0 commit comments