Skip to content

Commit

Permalink
Use 2h for remove update interval (#2490)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Feb 5, 2022
1 parent a5a350c commit 71be891
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def async_setup_task(hacs: HacsBase, hass: HomeAssistant) -> Task:
class Task(HacsTask):
"""Hacs update critical task."""

schedule = timedelta(minutes=30)
schedule = timedelta(hours=2)
stages = [HacsStage.RUNNING]

async def async_execute(self) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async def async_setup_task(hacs: HacsBase, hass: HomeAssistant) -> Task:
class Task(HacsTask):
"""Hacs update removed task."""

schedule = timedelta(hours=1)
schedule = timedelta(hours=2)
stages = [HacsStage.STARTUP]

async def async_execute(self) -> None:
Expand Down

0 comments on commit 71be891

Please sign in to comment.