projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cc5bbe
)
Improve error message for logs.
author
Scott Gasch
<scott@gasch.org>
Thu, 24 Nov 2022 18:20:35 +0000
(10:20 -0800)
committer
Scott Gasch
<scott@gasch.org>
Thu, 24 Nov 2022 18:20:35 +0000
(10:20 -0800)
src/pyutils/files/lockfile.py
patch
|
blob
|
history
diff --git
a/src/pyutils/files/lockfile.py
b/src/pyutils/files/lockfile.py
index 68f957cbc080deed793cf2e24c14baddeecd6e48..937c8631b9462bf168eb44b03bba79902918e4c7 100644
(file)
--- a/
src/pyutils/files/lockfile.py
+++ b/
src/pyutils/files/lockfile.py
@@
-176,7
+176,8
@@
class LockFile(contextlib.AbstractContextManager):
def __enter__(self):
if self.acquire_with_retries():
return self
- msg = f"Couldn't acquire {self.lockfile}; giving up."
+ contents = self._get_lockfile_contents()
+ msg = f"Couldn't acquire {self.lockfile} after several attempts. It's held by pid={contents.pid} ({contents.commandline}). Giving up."
logger.warning(msg)
raise LockFileException(msg)