From 78ab929ad132350d18b434111c4bf32c6ed92230 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Fri, 19 Jan 2024 03:19:37 +0200 Subject: [PATCH] config: azure: don't forget Coerce() for timeouts (#10247) Co-authored-by: Dave Berenbaum --- dvc/config_schema.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dvc/config_schema.py b/dvc/config_schema.py index 7d56192e43..9165a8e5d8 100644 --- a/dvc/config_schema.py +++ b/dvc/config_schema.py @@ -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": {