From: Gabriel BenHanokh Date: Tue, 11 Nov 2025 10:59:06 +0000 (+0200) Subject: rgw/dedup: remove the timeout limit when calling rgw_rados_notify X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1ba10af1b46dbe855c24c80220095205deb4233a;p=ceph-ci.git rgw/dedup: remove the timeout limit when calling rgw_rados_notify Resolves: rhbz#2413802 Signed-off-by: Gabriel BenHanokh --- diff --git a/src/rgw/rgw_dedup_cluster.cc b/src/rgw/rgw_dedup_cluster.cc index ab59c776d34..e20af1be984 100644 --- a/src/rgw/rgw_dedup_cluster.cc +++ b/src/rgw/rgw_dedup_cluster.cc @@ -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);