Răsfoiți Sursa

Use flock locks for storage locking

These locks are compatible with the command line utility flock,
which comes preinstalled with most Linux distributions.
Unrud 9 ani în urmă
părinte
comite
8ce6d1af30
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      radicale/storage.py

+ 2 - 2
radicale/storage.py

@@ -648,7 +648,7 @@ class Collection(BaseCollection):
                 elif os.name == "posix":
                     _cmd = fcntl.LOCK_EX if mode == "w" else fcntl.LOCK_SH
                     try:
-                        fcntl.lockf(cls._lock_file.fileno(), _cmd)
+                        fcntl.flock(cls._lock_file.fileno(), _cmd)
                     except OSError:
                         cls.logger.debug("Locking not supported")
                 cls._lock_file_locked = True
@@ -668,7 +668,7 @@ class Collection(BaseCollection):
                             cls.logger.debug("Unlocking not supported")
                     elif os.name == "posix":
                         try:
-                            fcntl.lockf(cls._lock_file.fileno(), fcntl.LOCK_UN)
+                            fcntl.flock(cls._lock_file.fileno(), fcntl.LOCK_UN)
                         except OSError:
                             cls.logger.debug("Unlocking not supported")
                     cls._lock_file_locked = False