]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw/dedup: remove the timeout limit when calling rgw_rados_notify
authorGabriel BenHanokh <gbenhano@redhat.com>
Tue, 11 Nov 2025 10:59:06 +0000 (12:59 +0200)
committerThomas Serlin <tserlin@redhat.com>
Tue, 11 Nov 2025 18:23:19 +0000 (13:23 -0500)
Resolves: rhbz#2413802

Signed-off-by: Gabriel BenHanokh <gbenhano@redhat.com>
src/rgw/rgw_dedup_cluster.cc

index ab59c776d34caef30d92c4c3e9d734fcd31c8521..e20af1be9844c79f026a55b1da2bbcd63174d304 100644 (file)
@@ -1226,8 +1226,8 @@ namespace rgw::dedup {
       return ret;
     }
 
-    // 10 seconds timeout
-    const uint64_t timeout_ms = 10*1000;
+    // unlimited timeout
+    const uint64_t timeout_ms = 0;
     bufferlist reply_bl;
     ret = rgw_rados_notify(dpp, ctl_ioctx, DEDUP_WATCH_OBJ, urgent_msg_bl,
                            timeout_ms, &reply_bl, null_yield);