From 72c5df8cc6ef0f4f6a1422cb875c669fcbfe717c Mon Sep 17 00:00:00 2001 From: Yingxin Date: Fri, 24 Aug 2018 17:23:56 +0800 Subject: [PATCH] test: fix compile error in test/crimson/test_config.cc Change to use ceph::md_config_obs_impl. Signed-off-by: Yingxin --- src/test/crimson/test_config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5