fix: address coderabbit review findings

This commit is contained in:
lda
2026-06-06 20:49:42 +07:00 Verified
parent 79a3ee4c7a
commit c0bc197fc4
8 changed files with 40 additions and 41 deletions
+1 -1
View File
@@ -267,7 +267,7 @@ def _rpc_timeout_from_optional_config(
return override
try:
config = load_workflow_config(path)
except FileNotFoundError, json.JSONDecodeError, ValidationError:
except (FileNotFoundError, json.JSONDecodeError, ValidationError):
return 30.0
target = config.client.target
if isinstance(target, RpcHttpTargetConfig):