diff options
author | Devaev Maxim <[email protected]> | 2020-03-01 04:30:32 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-03-01 04:30:32 +0300 |
commit | 44b0ab19bf33a2bdd0d9637f14128f968cf1764e (patch) | |
tree | 268d522f27e223ee96f7cfbac12a40c9e0ff5435 /kvmd/plugins/atx | |
parent | ff6e284e64c0e0a9e496fc047786a7d9c3aa907b (diff) |
no more busyloops in stub plugins
Diffstat (limited to 'kvmd/plugins/atx')
-rw-r--r-- | kvmd/plugins/atx/disabled.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kvmd/plugins/atx/disabled.py b/kvmd/plugins/atx/disabled.py index 09fad2f8..d480a337 100644 --- a/kvmd/plugins/atx/disabled.py +++ b/kvmd/plugins/atx/disabled.py @@ -20,11 +20,11 @@ # ========================================================================== # -import asyncio - from typing import Dict from typing import AsyncGenerator +from ... import aiotools + from . import AtxOperationError from . import BaseAtx @@ -50,7 +50,7 @@ class Plugin(BaseAtx): async def poll_state(self) -> AsyncGenerator[Dict, None]: while True: yield self.get_state() - await asyncio.sleep(60) + await aiotools.wait_infinite() # ===== |