diff options
author | Dan Mick <dan.mick@inktank.com> | 2013-02-05 22:17:00 -0800 |
---|---|---|
committer | Dan Mick <dan.mick@inktank.com> | 2013-02-07 13:06:53 -0800 |
commit | 1042060f40ad34e8a731e00a25525005d8bdec53 (patch) | |
tree | f5254bdc7e81c1852c0a4be3a271a83ee44f1386 | |
parent | c44846e035916ff0c5eaea94cf595fbe24bd26ea (diff) | |
download | ceph-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.cc | 8 |
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; |