From: Casey Bodley Date: Tue, 24 Oct 2017 20:54:59 +0000 (-0400) Subject: rgw: fix notify timeout for BucketTrimWatcher X-Git-Tag: v13.0.1~210^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ada2d108e627d519794e1a6c08af23cecbc5be79;p=ceph-ci.git rgw: fix notify timeout for BucketTrimWatcher from seconds to msec Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_sync_log_trim.cc b/src/rgw/rgw_sync_log_trim.cc index 30330c4a187..418441996f2 100644 --- a/src/rgw/rgw_sync_log_trim.cc +++ b/src/rgw/rgw_sync_log_trim.cc @@ -983,7 +983,7 @@ void configure_bucket_trim(CephContext *cct, BucketTrimConfig& config) conf->get_val("rgw_sync_log_trim_min_cold_buckets"); config.concurrent_buckets = conf->get_val("rgw_sync_log_trim_concurrent_buckets"); - config.notify_timeout_ms = 10; + config.notify_timeout_ms = 10000; config.recent_size = 128; config.recent_duration = std::chrono::hours(2); }