Fix units for refresh: never (#4048)

This commit is contained in:
Brian Kaufman 2022-11-23 17:31:37 -07:00 committed by GitHub
parent ec576bf9f9
commit 294901fbe9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1678,7 +1678,7 @@ def source_refresh(value: str):
if value.lower() == "always":
return source_refresh("0s")
if value.lower() == "never":
return source_refresh("1000y")
return source_refresh("365250d")
return positive_time_period_seconds(value)