summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-05 10:04:06 -0800
committerScott Gasch <[email protected]>2022-02-05 10:04:06 -0800
commit4e975f82f17e09d13efda815fe62efa9eb131210 (patch)
treeed426f38fe553484c617c8f5b9e794779ba3a4bc
parent74141719df0f52b98b4745c7c27e70c6417a5691 (diff)
Change threshold.
-rw-r--r--lockfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lockfile.py b/lockfile.py
index 2d42914..2907107 100644
--- a/lockfile.py
+++ b/lockfile.py
@@ -18,7 +18,7 @@ cfg = config.add_commandline_args(f'Lockfile ({__file__})', 'Args related to loc
cfg.add_argument(
'--lockfile_held_duration_warning_threshold_sec',
type=float,
- default=10.0,
+ default=60.0,
metavar='SECONDS',
help='If a lock is held for longer than this threshold we log a warning',
)