Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add default of 300s for timeout on shell #147

Merged
merged 1 commit into from
Sep 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions winterdrp/utils/execute_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class ExecutionError(Exception):

def run_local(
cmd: str,
output_dir: str = "."
output_dir: str = ".",
timeout: float = 300.
):
"""
Function to run on local machine using subprocess, with error handling.
Expand All @@ -28,6 +29,7 @@ def run_local(
cmd: A string containing the command you want to use to run sextractor. An example would be:
cmd = '/usr/bin/source-extractor image0001.fits -c sex.config'
output_dir: A local directory to save the output files to.
timeout: Time to timeout in seconds

Returns
-------
Expand All @@ -42,7 +44,7 @@ def run_local(

# Run sextractor

rval = subprocess.run(cmd, check=True, capture_output=True, shell=True)
rval = subprocess.run(cmd, check=True, capture_output=True, shell=True, timeout=timeout)

msg = f'Successfully executed command. '

Expand Down