fix: validate rpc target urls with pydantic

This commit is contained in:
lda
2026-06-03 10:26:37 +07:00 Verified
parent 9389dd6df6
commit fbb1b73302
3 changed files with 5 additions and 12 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ def load_cli_context(
config_path=resolved_config_path,
service=None,
handlers=RpcWorkflowApiClient(
url=target.url,
url=str(target.url),
timeout_seconds=(
rpc_timeout_seconds
if rpc_timeout_seconds is not None