file pool: snapshotting dirty volume not supported

Raise a NotImplementedError rather than risking corruption.
这个提交包含在:
Demi Marie Obenour 2020-11-24 19:15:25 -05:00
父节点 cee8201989
当前提交 14e9154e4e
找不到此签名对应的密钥
GPG 密钥 ID: 28A45C93B0B5B6E0

查看文件

@ -265,7 +265,9 @@ class FileVolume(qubes.storage.Volume):
return self
def export(self):
return snapshot(self.path, self.path_cow)
if self.is_dirty():
self._not_implemented('exporting a dirty volume')
return self.path
@asyncio.coroutine
def import_volume(self, src_volume):