summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Mick <dan.mick@inktank.com>2013-02-05 22:17:00 -0800
committerDan Mick <dan.mick@inktank.com>2013-02-07 13:06:53 -0800
commit1042060f40ad34e8a731e00a25525005d8bdec53 (patch)
treef5254bdc7e81c1852c0a4be3a271a83ee44f1386
parentc44846e035916ff0c5eaea94cf595fbe24bd26ea (diff)
downloadceph-1042060f40ad34e8a731e00a25525005d8bdec53.tar.gz
mds: error messages for export_dir said 'migrate_dir'
Signed-off-by: Dan Mick <dan.mick@inktank.com>
-rw-r--r--src/mds/MDS.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mds/MDS.cc b/src/mds/MDS.cc
index 0dd3f1b95d9..0a3480ebced 100644
--- a/src/mds/MDS.cc
+++ b/src/mds/MDS.cc
@@ -780,10 +780,10 @@ void MDS::handle_command(MMonCommand *m)
CDir *dir = in->get_dirfrag(frag_t());
if (dir && dir->is_auth()) {
mdcache->migrator->export_dir(dir, target);
- } else dout(0) << "bad migrate_dir path dirfrag frag_t() or dir not auth" << dendl;
- } else dout(0) << "bad migrate_dir path" << dendl;
- } else dout(0) << "bad migrate_dir target syntax" << dendl;
- } else dout(0) << "bad migrate_dir syntax" << dendl;
+ } else dout(0) << "bad export_dir path dirfrag frag_t() or dir not auth" << dendl;
+ } else dout(0) << "bad export_dir path" << dendl;
+ } else dout(0) << "bad export_dir target syntax" << dendl;
+ } else dout(0) << "bad export_dir syntax" << dendl;
}
else if (m->cmd[0] == "cpu_profiler") {
ostringstream ss;