mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
catch OSerror on metadata update
This commit is contained in:
parent
78b94b1d4d
commit
cdbad007b6
1 changed files with 6 additions and 3 deletions
|
@ -62,6 +62,9 @@ class CollectionPartMeta(CollectionBase):
|
||||||
|
|
||||||
def set_meta(self, props: Mapping[str, str]) -> None:
|
def set_meta(self, props: Mapping[str, str]) -> None:
|
||||||
# TODO: better fix for "mypy"
|
# TODO: better fix for "mypy"
|
||||||
with self._atomic_write(self._props_path, "w") as fo: # type: ignore
|
try:
|
||||||
f = cast(TextIO, fo)
|
with self._atomic_write(self._props_path, "w") as fo: # type: ignore
|
||||||
json.dump(props, f, sort_keys=True)
|
f = cast(TextIO, fo)
|
||||||
|
json.dump(props, f, sort_keys=True)
|
||||||
|
except OSError as e:
|
||||||
|
raise ValueError("Failed to write meta data %r %s" % (self._props_path, e)) from e
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue