You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is happening because the __init__ method of BaseFileLock is always called when a new FileLock is constructed, even if it's just returning an existing instance. This sets self._context to a new object. In particular, in the nested situation, the context whose counter was incremented by the first call to acquire will be discarded and replaced with a new context; thus, it will not know that the lock has already been acquired and will try to open the lock file again, but will be unable to.
My humble suggestion would be to avoid this by only calling the contents of __init__ once when the FileLock is actually constructed. This could be done by renaming it to something like _initialize and calling it within __new__ after each call to super().__new__.
I noticed the following code hangs. Is this not a supported usage?
This works fine:
Environment:
The text was updated successfully, but these errors were encountered: