This commit is contained in:
Your Name
2025-05-07 18:25:30 +02:00
parent ba889feee9
commit a73eb30d32
2 changed files with 4 additions and 4 deletions

View File

@@ -132,7 +132,7 @@ def run_script(script_name, interval, delay=0):
if not is_script_locked():
create_lock_file()
try:
subprocess.run(["python3", script_path])
subprocess.run(["python3", script_path], timeout=200)
finally:
remove_lock_file()
else: