summaryrefslogtreecommitdiffstats
path: root/src/mon
diff options
context:
space:
mode:
authorLoic Dachary <loic@dachary.org>2014-03-03 15:12:22 +0100
committerLoic Dachary <loic@dachary.org>2014-03-17 09:48:02 +0100
commit9850ab27973b5f2c1958da68eaf43d7e1d63bd2f (patch)
tree8741c4c78190320ab9946a681f10e00965cbb13c /src/mon
parentmon: crush_ruleset_create_erasure indent (diff)
downloadceph-9850ab27973b5f2c1958da68eaf43d7e1d63bd2f.tar.xz
ceph-9850ab27973b5f2c1958da68eaf43d7e1d63bd2f.zip
mon: crush_ruleset_create_erasure s/_map//
Signed-off-by: Loic Dachary <loic@dachary.org>
Diffstat (limited to 'src/mon')
-rw-r--r--src/mon/OSDMonitor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc
index b72c5b1d661..ad4df2b093b 100644
--- a/src/mon/OSDMonitor.cc
+++ b/src/mon/OSDMonitor.cc
@@ -2824,9 +2824,9 @@ int OSDMonitor::crush_ruleset_create_erasure(const string &name,
return -EALREADY;
} else {
ErasureCodeInterfaceRef erasure_code;
- int err = get_erasure_code(properties_map, &erasure_code, ss);
+ int err = get_erasure_code(properties, &erasure_code, ss);
if (err) {
- ss << "failed to load plugin using properties " << properties_map;
+ ss << "failed to load plugin using properties " << properties;
return err;
}