Skip to content

Commit 5b0d2a1

Browse files
authored
fix(udf): use Debug to display transport error on UDF server (#15646)
fix error message
1 parent a7bc773 commit 5b0d2a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/query/expression/src/utils/udf_client.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ impl UDFFlightClient {
6666
.await
6767
.map_err(|err| {
6868
ErrorCode::UDFServerConnectError(format!(
69-
"Cannot connect to UDF Server {addr}: {err}"
69+
"Cannot connect to UDF Server {}: {:?}",
70+
addr, err
7071
))
7172
})?
7273
.max_decoding_message_size(MAX_DECODING_MESSAGE_SIZE);

0 commit comments

Comments
 (0)