We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89688f0 commit caa9b10Copy full SHA for caa9b10
backend/onyx/background/celery/tasks/beat_schedule.py
@@ -67,7 +67,9 @@
67
{
68
"name": "check-for-user-file-folder-sync",
69
"task": OnyxCeleryTask.CHECK_FOR_USER_FILE_FOLDER_SYNC,
70
- "schedule": timedelta(seconds=30),
+ "schedule": timedelta(
71
+ days=1
72
+ ), # This should essentially always be triggered manually for user folder updates.
73
"options": {
74
"priority": OnyxCeleryPriority.MEDIUM,
75
"expires": BEAT_EXPIRES_DEFAULT,
0 commit comments