catch unsupported placeholder

This commit is contained in:
Peter Bieringer 2025-03-27 07:57:28 +01:00
parent 70b66ddfe2
commit af09d532c3

View file

@ -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(