Skip to content

Commit

Permalink
disable housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Dec 18, 2024
1 parent 0710007 commit ec84339
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hypha/VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.20.44.post5"
"version": "0.20.44.post6"
}
8 changes: 4 additions & 4 deletions hypha/core/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,10 +535,10 @@ async def init(self, reset_redis, startup_functions=None):
self._scheduler_task = asyncio.create_task(run_scheduler_task(self._scheduler))

# Do house keeping every 10 minutes
self._house_keeping_schedule = await self.schedule_task(
self.housekeeping, task_name="housekeeping", corn="*/1 * * * *"
)
self._first_run = True
# self._house_keeping_schedule = await self.schedule_task(
# self.housekeeping, task_name="housekeeping", corn="*/1 * * * *"
# )
# self._first_run = True

async def schedule_task(
self,
Expand Down

0 comments on commit ec84339

Please sign in to comment.