Skip to content

Commit

Permalink
config: azure: don't forget Coerce() for timeouts (#10247)
Browse files Browse the repository at this point in the history
Co-authored-by: Dave Berenbaum <[email protected]>
  • Loading branch information
efiop and dberenbaum authored Jan 19, 2024
1 parent 5c31189 commit 78ab929
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dvc/config_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ def __call__(self, data):
"exclude_shared_token_cache_credential": Bool,
"exclude_managed_identity_credential": Bool,
Optional("verify", default=False): Bool,
"timeout": int,
"read_timeout": int,
"connection_timeout": int,
"timeout": Coerce(int),
"read_timeout": Coerce(int),
"connection_timeout": Coerce(int),
**REMOTE_COMMON,
},
"oss": {
Expand Down

0 comments on commit 78ab929

Please sign in to comment.