Skip to content

Commit

Permalink
Add 10-min planning timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
camall3n committed Jan 17, 2024
1 parent 9fedf2c commit 92ac899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/sas_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def plan(sas_path, fd_path, plan_type: str = "lmcut"):
# Note: we don't call "python" at the beginning
# Note: "--" separates the file path arg from the remaining args
cmd_pieces = [fd_path, sas_path, "--", "--search", search_config]
cmd_output = subprocess.run(cmd_pieces, capture_output=True, shell=False)
cmd_output = subprocess.run(cmd_pieces, capture_output=True, shell=False, timeout=600)
return cmd_output


Expand Down

0 comments on commit 92ac899

Please sign in to comment.