From af09d532c36a6ebb8e79d3a1e8befb61fcb7de35 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 27 Mar 2025 07:57:28 +0100 Subject: [PATCH] catch unsupported placeholder --- radicale/storage/multifilesystem/lock.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/radicale/storage/multifilesystem/lock.py b/radicale/storage/multifilesystem/lock.py index 8947cfa9..d21e4a7f 100644 --- a/radicale/storage/multifilesystem/lock.py +++ b/radicale/storage/multifilesystem/lock.py @@ -74,8 +74,13 @@ class StoragePartLock(StorageBase): else: # Process group is also used to identify child processes preexec_fn = os.setpgrp - command = self._hook % { - "user": shlex.quote(user or "Anonymous")} + try: + command = self._hook % { + "user": shlex.quote(user or "Anonymous")} + except KeyError as e: + logger.error("Storage hook contains not supported placeholder %s (skip execution of: %r)" % (e, self._hook)) + return + logger.debug("Executing storage hook: '%s'" % command) try: p = subprocess.Popen(