Skip to content

Commit

Permalink
Update mediaconch_checker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmcnamara authored Dec 11, 2023
1 parent 84dddfc commit 755ca1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ami_scripts/mediaconch_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def prepare_mc_commands(eligible, policies_dir):
def run_command(command):
"""Run a command in subprocess"""
try:
process = subprocess.run(command, check=True, timeout=600, text=True, capture_output=True)
process = subprocess.run(command, check=True, timeout=300, text=True, capture_output=True)
output = process.stdout
except subprocess.CalledProcessError as e:
output = str(e)
Expand Down Expand Up @@ -325,4 +325,4 @@ def main():
summarize(asset_count, inelig_count, elig_count, pass_count, fail_count, error_count)

if __name__ == '__main__':
main()
main()

0 comments on commit 755ca1e

Please sign in to comment.