Unverified Commit 2e6692c8 authored by Jeff Rasley's avatar Jeff Rasley Committed by GitHub
Browse files

Fix regression in runner (#843)

parent 49496364
......@@ -304,7 +304,7 @@ def main(args=None):
# encode world info as base64 to make it easier to pass via command line
world_info_base64 = encode_world_info(active_resources)
multi_node_exec = True # len(active_resources) > 1
multi_node_exec = len(active_resources) > 1
if multi_node_exec and not shutil.which('pdsh'):
raise RuntimeError("pdsh is not installed, unable to proceed")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment