From 87b593c5f91d218cbcd37d031ea86de1abbeecc8 Mon Sep 17 00:00:00 2001 From: DJP Date: Wed, 26 Nov 2025 15:34:14 -0500 Subject: [PATCH] Fix syntax errors in orchestrator-prod.py args --- Python-Version/scripts/orchestrator-prod.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Python-Version/scripts/orchestrator-prod.py b/Python-Version/scripts/orchestrator-prod.py index da907e9..06ea533 100644 --- a/Python-Version/scripts/orchestrator-prod.py +++ b/Python-Version/scripts/orchestrator-prod.py @@ -43,44 +43,44 @@ TASKS = [ 'name': 'A1->A2 Box Uploader', 'script': 'scripts/a1_to_a2_box_uploader.py', 'interval_minutes': 3, # Changed from 5 to 3 minutes - 'args': [--auth-pfx-v2]# Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'A2->A3 Upload Polling', 'script': 'scripts/a2_to_a3_upload_polling.py', 'interval_minutes': 3, # Changed from 5 to 3 minutes - 'args': [--auth-pfx-v2] # Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'A4 Box Uploader', 'script': 'scripts/a4_box_uploader.py', 'interval_minutes': 10, - 'args': [--auth-pfx-v2] # Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'A4 Webhook Monitor', 'script': 'scripts/a4_webhook_monitor.py', 'interval_minutes': 3, # Changed from 5 to 3 minutes - 'args': [--auth-pfx-v2] # Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'A5->A6 Download', 'script': 'scripts/a5_to_a6_download.py', 'interval_minutes': 3, # Changed from 5 to 3 minutes - 'args': [--auth-pfx-v2] # Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'B1->B2 Download', 'script': 'scripts/b1_to_b2_download.py', 'interval_minutes': 10, - 'args': [--auth-pfx-v2] # Temporarily using OAuth instead of --auth-pfx-v2 + 'args': ['--auth-pfx-v2'] # Production uses mTLS V2 }, { 'name': 'Daily Report', 'script': 'scripts/daily_report.py', 'interval_minutes': 0, # Special case: use run_at_hour 'run_at_hour': 19, # Run at 7 PM - 'args': [--auth-pfx-v2] + 'args': [] } ]