From e6d21f33922610f0d45f76b1bf6161679e32411f Mon Sep 17 00:00:00 2001 From: GroovieGermanikus Date: Fri, 8 Dec 2023 14:22:02 +0100 Subject: [PATCH] fix compile --- cluster-endpoints/examples/grpc_using_streams.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-endpoints/examples/grpc_using_streams.rs b/cluster-endpoints/examples/grpc_using_streams.rs index f8d9c3a3..c0e69e2f 100644 --- a/cluster-endpoints/examples/grpc_using_streams.rs +++ b/cluster-endpoints/examples/grpc_using_streams.rs @@ -249,7 +249,7 @@ async fn create_geyser_stream2(label: String, grpc_addr: String, x_token: Option } Err(tonic_status) => { // TODO identify non-recoverable errors and cancel stream - warn!("Receive error on label - retrying: {:?}", label, tonic_status); + warn!("Receive error on {} - retrying: {:?}", label, tonic_status); continue 'main_loop; } }