Merge pull request #113 from overte-org/fix/verbose_lock

Made lock message more verbose
This commit is contained in:
Dale Glass 2022-07-14 20:36:02 +02:00 committed by GitHub
commit dbe359f493
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ class Singleton:
self.fh = None
# print is horked here so write directly to stdout.
with open(1, mode="w", closefd=False) as _stdout:
_stdout.write("Couldn't aquire lock, retrying in 10 seconds\n")
_stdout.write(f"Couldn't aquire lock {self.path}, retrying in 10 seconds\n")
_stdout.flush()
time.sleep(10)
return self