summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_dmclock.h
diff options
context:
space:
mode:
authorAbhishek Lekshmanan <abhishek@suse.com>2018-08-07 14:13:04 +0200
committerAbhishek Lekshmanan <abhishek@suse.com>2019-01-31 19:39:36 +0100
commitce39670d58a7ac4d0f80c77e0bbc2dd7741d3577 (patch)
treecafa2d8ea71a776e8b174fea23e6cb06d07c30f1 /src/rgw/rgw_dmclock.h
parentrgw: asio frontend now has its own scheduler (diff)
downloadceph-ce39670d58a7ac4d0f80c77e0bbc2dd7741d3577.tar.xz
ceph-ce39670d58a7ac4d0f80c77e0bbc2dd7741d3577.zip
rgw: dmclock: update md_config_t -> ConfigProxy
Keeping up with changes from https://github.com/ceph/ceph/pull/22908/ all the md_config_t structs in rgw_dmclock have been subsequently changed to use ConfigProxy Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Diffstat (limited to 'src/rgw/rgw_dmclock.h')
-rw-r--r--src/rgw/rgw_dmclock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rgw/rgw_dmclock.h b/src/rgw/rgw_dmclock.h
index 2b9a6f3eaf6..44b810671f3 100644
--- a/src/rgw/rgw_dmclock.h
+++ b/src/rgw/rgw_dmclock.h
@@ -42,7 +42,7 @@ using crimson::dmclock::get_time;
class ClientConfig : public md_config_obs_t {
std::vector<ClientInfo> clients;
- void update(const md_config_t *conf);
+ void update(const ConfigProxy &conf);
public:
ClientConfig(CephContext *cct);
@@ -50,7 +50,7 @@ class ClientConfig : public md_config_obs_t {
ClientInfo* operator()(client_id client);
const char** get_tracked_conf_keys() const override;
- void handle_conf_change(const md_config_t *conf,
+ void handle_conf_change(const ConfigProxy& conf,
const std::set<std::string>& changed) override;
};