From e052ed8567a9b259272483efac77a68a34060d02 Mon Sep 17 00:00:00 2001 From: Millione Date: Wed, 29 Nov 2023 13:19:02 +0800 Subject: [PATCH] chore(volo-thrift): pub ClientBuilder callee_name --- volo-thrift/src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volo-thrift/src/client/mod.rs b/volo-thrift/src/client/mod.rs index fb2704b1..00d93bdf 100644 --- a/volo-thrift/src/client/mod.rs +++ b/volo-thrift/src/client/mod.rs @@ -50,7 +50,7 @@ pub mod layer; pub struct ClientBuilder { config: Config, pool: Option, - callee_name: FastStr, + pub callee_name: FastStr, caller_name: FastStr, address: Option
, // maybe address use Arc avoid memory alloc inner_layer: IL,