diff --git a/meta_client/src/meta_impl.rs b/meta_client/src/meta_impl.rs index c7781373df..5cffb25e49 100644 --- a/meta_client/src/meta_impl.rs +++ b/meta_client/src/meta_impl.rs @@ -61,7 +61,8 @@ impl MetaClientImpl { .map_err(|e| Box::new(e) as _) .context(FailConnect { addr: &config.meta_addr, - })?; + })? + .timeout(config.timeout.0); MetaServiceGrpcClient::connect(endpoint) .await .map_err(|e| Box::new(e) as _)