From 0842b86113e01266d62d9c7778515899ce225cea Mon Sep 17 00:00:00 2001 From: Xiangjin Date: Mon, 23 Oct 2023 23:14:19 +0800 Subject: [PATCH] network error without stacktrace --- src/connector/src/schema/schema_registry/client.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/connector/src/schema/schema_registry/client.rs b/src/connector/src/schema/schema_registry/client.rs index 57e9ae1968f7b..6d5778cd367c4 100644 --- a/src/connector/src/schema/schema_registry/client.rs +++ b/src/connector/src/schema/schema_registry/client.rs @@ -135,7 +135,9 @@ impl Client { Err(RwError::from(ProtocolError(format!( "all request confluent registry all timeout, req path {:?}, urls {:?}, err: {:?}", - path, self.url, errs + path, + self.url, + errs.iter().map(|e| e.to_string()).collect_vec() )))) }