From: Yingxin Date: Fri, 24 Aug 2018 09:23:56 +0000 (+0800) Subject: test: fix compile error in test/crimson/test_config.cc X-Git-Tag: v14.0.1~503^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=72c5df8cc6ef0f4f6a1422cb875c669fcbfe717c;p=ceph.git test: fix compile error in test/crimson/test_config.cc Change to use ceph::md_config_obs_impl. Signed-off-by: Yingxin --- diff --git a/src/test/crimson/test_config.cc b/src/test/crimson/test_config.cc index fd81d328bde6b..b9c8fb870f4dd 100644 --- a/src/test/crimson/test_config.cc +++ b/src/test/crimson/test_config.cc @@ -10,7 +10,7 @@ using Config = ceph::common::ConfigProxy; const std::string test_uint_option = "osd_max_pgls"; const uint64_t INVALID_VALUE = (uint64_t)(-1); -class ConfigObs : public ceph::internal::md_config_obs_impl { +class ConfigObs : public ceph::md_config_obs_impl { uint64_t last_change = INVALID_VALUE; uint64_t num_changes = 0;