summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/disabled.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-03-01 04:30:32 +0300
committerDevaev Maxim <[email protected]>2020-03-01 04:30:32 +0300
commit44b0ab19bf33a2bdd0d9637f14128f968cf1764e (patch)
tree268d522f27e223ee96f7cfbac12a40c9e0ff5435 /kvmd/plugins/msd/disabled.py
parentff6e284e64c0e0a9e496fc047786a7d9c3aa907b (diff)
no more busyloops in stub plugins
Diffstat (limited to 'kvmd/plugins/msd/disabled.py')
-rw-r--r--kvmd/plugins/msd/disabled.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/kvmd/plugins/msd/disabled.py b/kvmd/plugins/msd/disabled.py
index 97835513..4dacf1e4 100644
--- a/kvmd/plugins/msd/disabled.py
+++ b/kvmd/plugins/msd/disabled.py
@@ -20,13 +20,14 @@
# ========================================================================== #
-import asyncio
import contextlib
from typing import Dict
from typing import AsyncGenerator
from typing import Optional
+from ... import aiotools
+
from . import MsdOperationError
from . import BaseMsd
@@ -55,7 +56,7 @@ class Plugin(BaseMsd):
async def poll_state(self) -> AsyncGenerator[Dict, None]:
while True:
yield (await self.get_state())
- await asyncio.sleep(60)
+ await aiotools.wait_infinite()
async def reset(self) -> None:
raise MsdDisabledError()