Skip to content

Commit 1d12947

Browse files
committed
Twenty four hours by default
1 parent dac6611 commit 1d12947

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

omero_user_token/cli/omero_user_token.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
from .. import CONFIG, getter, setter
1515

1616

17+
TWENTY_FOUR_HOURS_MS = 24 * 60 * 60 * 1000
18+
19+
1720
@click.group()
1821
def cli():
1922
pass
@@ -34,7 +37,7 @@ def cli():
3437
help="OMERO username"
3538
)
3639
@click.option(
37-
'--time_to_idle', default=2**31 - 1, type=int,
40+
'--time_to_idle', default=TWENTY_FOUR_HOURS_MS, type=int,
3841
help="Number of milliseconds to set the timeToIdle value to; "
3942
"defaults to maximum allowed"
4043
)

0 commit comments

Comments
 (0)