diff options
author | Maxim Devaev <[email protected]> | 2024-11-02 18:06:45 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-11-02 18:06:52 +0200 |
commit | 0fd1174bc5354d8f69adde3218edd121e48c84f0 (patch) | |
tree | 5eb78947f32cb8405283fbc1351fae3272efd6c2 /kvmd/plugins/msd/__init__.py | |
parent | d4fb640418efdb924bf30f1487acde4a675d6e2f (diff) |
granularity info and minor fixes
Diffstat (limited to 'kvmd/plugins/msd/__init__.py')
-rw-r--r-- | kvmd/plugins/msd/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kvmd/plugins/msd/__init__.py b/kvmd/plugins/msd/__init__.py index 193b81b1..b2f9d50e 100644 --- a/kvmd/plugins/msd/__init__.py +++ b/kvmd/plugins/msd/__init__.py @@ -121,6 +121,18 @@ class BaseMsd(BasePlugin): raise NotImplementedError() async def poll_state(self) -> AsyncGenerator[dict, None]: + # ==== Granularity table ==== + # - enabled -- Full + # - online -- Partial + # - busy -- Partial + # - drive -- Partial, nullable + # - storage -- Partial, nullable + # - storage.parts -- Partial + # - storage.images -- Partial + # - storage.downloading -- Partial, nullable + # - storage.uploading -- Partial, nullable + # =========================== + if self is not None: # XXX: Vulture and pylint hack raise NotImplementedError() yield |