This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 7ebf1cfacc6 branch-3.0: [improvement](cloud-mow) change 
update_delete_bitmap rpc timeout to 30s #51671 (#53109)
7ebf1cfacc6 is described below

commit 7ebf1cfacc61f4be6c65704512b9f4f157aba1b0
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jul 12 10:21:36 2025 +0800

    branch-3.0: [improvement](cloud-mow) change update_delete_bitmap rpc 
timeout to 30s #51671 (#53109)
    
    Cherry-picked from #51671
    
    Co-authored-by: zhannngchen <[email protected]>
---
 be/src/cloud/cloud_meta_mgr.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/cloud/cloud_meta_mgr.cpp b/be/src/cloud/cloud_meta_mgr.cpp
index 21a91d7a64e..622a38c3159 100644
--- a/be/src/cloud/cloud_meta_mgr.cpp
+++ b/be/src/cloud/cloud_meta_mgr.cpp
@@ -400,7 +400,7 @@ Status retry_rpc(std::string_view op_name, const Request& 
req, Response* res,
         std::shared_ptr<MetaService_Stub> stub;
         RETURN_IF_ERROR(proxy->get(&stub));
         brpc::Controller cntl;
-        if (op_name == "get delete bitmap") {
+        if (op_name == "get delete bitmap" || op_name == "update delete 
bitmap") {
             cntl.set_timeout_ms(3 * config::meta_service_brpc_timeout_ms);
         } else {
             cntl.set_timeout_ms(config::meta_service_brpc_timeout_ms);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to