Skip to content

Commit 78ab929

Browse files
efiopdberenbaum
andauthored
config: azure: don't forget Coerce() for timeouts (#10247)
Co-authored-by: Dave Berenbaum <dave.berenbaum@gmail.com>
1 parent 5c31189 commit 78ab929

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dvc/config_schema.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ def __call__(self, data):
260260
"exclude_shared_token_cache_credential": Bool,
261261
"exclude_managed_identity_credential": Bool,
262262
Optional("verify", default=False): Bool,
263-
"timeout": int,
264-
"read_timeout": int,
265-
"connection_timeout": int,
263+
"timeout": Coerce(int),
264+
"read_timeout": Coerce(int),
265+
"connection_timeout": Coerce(int),
266266
**REMOTE_COMMON,
267267
},
268268
"oss": {

0 commit comments

Comments
 (0)