-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documented ProvidersThrottleDuration value is invalid #741
Comments
Fixed by #760 |
I've just faced this same issue again with v1.2.3. |
It seems it has been reintroduced on purpose with commit 056fe9a but my traefik won't start if I set |
@bbinet unfortunately, the docs only reflect the latest released version, including release candidates (we yet have to change to versioned docs, see also #1279). In #1350, we added an improvement to support specifying all time units in either a unit-less format (defaulting to seconds) or with a unit suffix understood by Go's |
Ok, thanks. |
The value of ProvidersThrottleDuration needs to be defined as an integer. Using the documented example results in the following error:
Ref:
i.e
ProvidersThrottleDuration = "5s"
should beProvidersThrottleDuration = 5
Suggest also adding the unit suffix
s
to the debug logs for clarity:The text was updated successfully, but these errors were encountered: