diff options
author | Devaev Maxim <[email protected]> | 2021-05-26 12:26:31 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-05-26 12:26:31 +0300 |
commit | e4806297242c69fab8967b7e1d2d1a81dd17d744 (patch) | |
tree | ae61f672848a5e3289c6d75371b71c01e2bc1722 /kvmd/plugins/msd/__init__.py | |
parent | 5da412ae7cad952c58e5190aaabed39afd3cdb66 (diff) |
speed up msd
Diffstat (limited to 'kvmd/plugins/msd/__init__.py')
-rw-r--r-- | kvmd/plugins/msd/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kvmd/plugins/msd/__init__.py b/kvmd/plugins/msd/__init__.py index 5c5ce9df..c8015a2a 100644 --- a/kvmd/plugins/msd/__init__.py +++ b/kvmd/plugins/msd/__init__.py @@ -118,6 +118,9 @@ class BaseMsd(BasePlugin): raise NotImplementedError() yield + def get_upload_chunk_size(self) -> int: + raise NotImplementedError() + async def write_image_chunk(self, chunk: bytes) -> int: raise NotImplementedError() |