mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Kill storage hook on error
This commit is contained in:
parent
dbe95641c0
commit
d4af2cd1a6
1 changed files with 5 additions and 1 deletions
|
@ -62,7 +62,11 @@ class StorageLockMixin:
|
||||||
stdout=subprocess.PIPE if debug else subprocess.DEVNULL,
|
stdout=subprocess.PIPE if debug else subprocess.DEVNULL,
|
||||||
stderr=subprocess.PIPE if debug else subprocess.DEVNULL,
|
stderr=subprocess.PIPE if debug else subprocess.DEVNULL,
|
||||||
shell=True, universal_newlines=True, cwd=folder)
|
shell=True, universal_newlines=True, cwd=folder)
|
||||||
stdout_data, stderr_data = p.communicate()
|
try:
|
||||||
|
stdout_data, stderr_data = p.communicate()
|
||||||
|
except BaseException: # e.g. KeyboardInterrupt or SystemExit
|
||||||
|
p.kill()
|
||||||
|
raise
|
||||||
if stdout_data:
|
if stdout_data:
|
||||||
logger.debug("Captured stdout hook:\n%s", stdout_data)
|
logger.debug("Captured stdout hook:\n%s", stdout_data)
|
||||||
if stderr_data:
|
if stderr_data:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue