From: Jordi Llonch Date: Sun, 14 Jul 2013 21:28:02 +0000 (+1000) Subject: Use mon_host instead of mon_addr in ceph_conf X-Git-Tag: v0.67-rc1~82^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=629a9d77cd082834e12c14968f96708e28e62f3b;p=ceph.git Use mon_host instead of mon_addr in ceph_conf Signed-off-by: Jordi Llonch --- 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");