From 629a9d77cd082834e12c14968f96708e28e62f3b Mon Sep 17 00:00:00 2001 From: Jordi Llonch Date: Mon, 15 Jul 2013 07:28:02 +1000 Subject: [PATCH] Use mon_host instead of mon_addr in ceph_conf Signed-off-by: Jordi Llonch --- src/client/hypertable/CephBroker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/hypertable/CephBroker.cc b/src/client/hypertable/CephBroker.cc index 7008f30bb3cd..9d64cfe16823 100644 --- a/src/client/hypertable/CephBroker.cc +++ b/src/client/hypertable/CephBroker.cc @@ -78,7 +78,7 @@ CephBroker::CephBroker(PropertiesPtr& cfg) if (ret) { throw Hypertable::Exception(ret, "ceph_create failed"); } - ret = ceph_conf_set(cmount, "mon_addr", mon_addr.c_str()); + ret = ceph_conf_set(cmount, "mon_host", mon_addr.c_str()); if (ret) { ceph_shutdown(cmount); throw Hypertable::Exception(ret, "ceph_conf_set(mon_addr) failed"); -- 2.47.3