From: Adam C. Emerson Date: Tue, 12 Apr 2022 23:53:46 +0000 (-0400) Subject: rgw: Remove unused members of RGWBucketPipeSyncStatusManager X-Git-Tag: v18.0.0~787^2~19 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=bf71e65627d05592c21493183733c5056b51fb64;p=ceph.git rgw: Remove unused members of RGWBucketPipeSyncStatusManager Signed-off-by: Adam C. Emerson --- diff --git a/src/rgw/rgw_data_sync.cc b/src/rgw/rgw_data_sync.cc index 7ca5753dfcf0c..ec46ab55295c3 100644 --- a/src/rgw/rgw_data_sync.cc +++ b/src/rgw/rgw_data_sync.cc @@ -3413,8 +3413,7 @@ RGWBucketPipeSyncStatusManager::RGWBucketPipeSyncStatusManager(rgw::sal::RadosSt http_manager(store->ctx(), cr_mgr.get_completion_mgr()), source_zone(_source_zone), source_bucket(_source_bucket), conn(NULL), error_logger(NULL), - dest_bucket(_dest_bucket), - num_shards(0) + dest_bucket(_dest_bucket) { } diff --git a/src/rgw/rgw_data_sync.h b/src/rgw/rgw_data_sync.h index 6ce22ba8767c6..259d048d3981d 100644 --- a/src/rgw/rgw_data_sync.h +++ b/src/rgw/rgw_data_sync.h @@ -695,8 +695,6 @@ public: int num_pipes() { return sync_pairs.size(); } - - void wakeup(); }; class BucketIndexShardsManager; @@ -728,13 +726,7 @@ class RGWBucketPipeSyncStatusManager : public DoutPrefixProvider { std::vector source_mgrs; - std::string source_status_oid; - std::string source_shard_status_oid_prefix; - std::map sync_status; - rgw_raw_obj status_obj; - - int num_shards; public: RGWBucketPipeSyncStatusManager(rgw::sal::RadosStore* _store,