Queue long-running backup and upload

This commit is contained in:
2026-02-07 22:55:34 +03:00
parent 69ace93cac
commit 77801e9123
4 changed files with 37 additions and 12 deletions

View File

@@ -5,6 +5,7 @@ from app import bot, dp, cfg, ADMIN_ID
from keyboards import menu_kb
from services.docker import discover_containers, docker_watchdog
from services.alerts import monitor_resources, monitor_smart
from services.queue import worker as queue_worker
from services.notify import notify
import state
import handlers.menu
@@ -34,6 +35,7 @@ async def main():
asyncio.create_task(monitor_resources(cfg, notify, bot, ADMIN_ID))
if cfg.get("alerts", {}).get("smart_enabled", True):
asyncio.create_task(monitor_smart(cfg, notify, bot, ADMIN_ID))
asyncio.create_task(queue_worker())
await notify_start()
await dp.start_polling(bot)