Fix syntax errors in orchestrator-prod.py args

This commit is contained in:
DJP 2025-11-26 15:34:14 -05:00
parent c53e79cbaf
commit 87b593c5f9

View file

@ -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': []
}
]