diff options
Diffstat (limited to 'Mailman/LockFile.py')
| -rw-r--r-- | Mailman/LockFile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/LockFile.py b/Mailman/LockFile.py index 33008e92b..9323b4895 100644 --- a/Mailman/LockFile.py +++ b/Mailman/LockFile.py @@ -64,8 +64,8 @@ import traceback # Units are floating-point seconds. DEFAULT_LOCK_LIFETIME = datetime.timedelta(seconds=15) -# Allowable a bit of clock skew -CLOCK_SLOP = datetime.timedelta(seconds=10) +# Allowable a bit of clock skew, in seconds. +CLOCK_SLOP = 10 # This is appropriate for Mailman, but you may want to change this if you're # using this code outside Mailman. log = logging.getLogger('mailman.locks') |
