diff --git a/proxy_components/proxy_ffi/src/raftstore_proxy.rs b/proxy_components/proxy_ffi/src/raftstore_proxy.rs index f869fdfe13e..f942397e88d 100644 --- a/proxy_components/proxy_ffi/src/raftstore_proxy.rs +++ b/proxy_components/proxy_ffi/src/raftstore_proxy.rs @@ -142,7 +142,7 @@ impl RaftStoreProxy { // We don't use information stored in `GlobalReplicationState` to decouple. *self.cluster_raftstore_ver.write().unwrap() = RaftstoreVer::Uncertain; let mut retry_count: u64 = 0; - const RETRY_LIMIT: u64 = 15; + const RETRY_LIMIT: u64 = 40; let stores = loop { match self.pd_client.as_ref().unwrap().get_all_stores(false) { Ok(stores) => break stores,