Update time interval for agent_sync job
Taylor committed
Apr 23, 2024 at 09:20 UTC
d74e9c171154b46a6a9d26850a04b002e5a55306
1 file changed
+1
-1
backend/app/schedulers/scheduler.py
+1
-1
@@ -117,7 +117,7 @@ async def initialize_job_metadata():
117
# Implement logic to initialize or update job metadata.
118
# Example: Check and add metadata for each known job
119
known_jobs = [
120
- {"job_id": "agent_sync", "time_interval": 1, "function": agent_sync},
120
+ {"job_id": "agent_sync", "time_interval": 15, "function": agent_sync},
121
# {"job_id": "invoke_mimecast_integration", "time_interval": 5, "function": invoke_mimecast_integration}
122
]
123
for job in known_jobs: