Skip to content

Commit c378729

Browse files
committed
Restore 0s throttle default
1 parent 2c3219b commit c378729

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyterhub_traefik_proxy/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def __init__(self, **kwargs):
139139
dynamic_config = Dict()
140140

141141
traefik_providers_throttle_duration = Unicode(
142-
"0.1s",
142+
"0s",
143143
config=True,
144144
help="""
145145
throttle traefik reloads of configuration.

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def _launch_traefik(*extra_args, env=None):
490490
"--api",
491491
"--accessLog",
492492
"--log.level=debug",
493-
"--providers.providersThrottleDuration=0.1s",
493+
"--providers.providersThrottleDuration=0s",
494494
"--entrypoints.https.address=:8000",
495495
"--entrypoints.https.http.tls.options=default",
496496
"--entrypoints.auth_api.address=:8099",

0 commit comments

Comments
 (0)