diff options
author | Sage Weil <sage@redhat.com> | 2019-12-04 21:24:57 +0100 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2019-12-18 20:46:57 +0100 |
commit | 5e0571c239e8cb3c0ae092fb55d76f31c354e24e (patch) | |
tree | 74b9fd79cf516eeb2d1893b02ce46861511655af /src/mds/Beacon.cc | |
parent | Merge PR #32310 into master (diff) | |
download | ceph-5e0571c239e8cb3c0ae092fb55d76f31c354e24e.tar.xz ceph-5e0571c239e8cb3c0ae092fb55d76f31c354e24e.zip |
mds: add mds_join_fs option; pass via MMDSBeacon
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src/mds/Beacon.cc')
-rw-r--r-- | src/mds/Beacon.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds/Beacon.cc b/src/mds/Beacon.cc index 07a8a2ece65..c6da7cd242a 100644 --- a/src/mds/Beacon.cc +++ b/src/mds/Beacon.cc @@ -204,9 +204,9 @@ bool Beacon::_send() want_state, last_seq, CEPH_FEATURES_SUPPORTED_DEFAULT); - beacon->set_health(health); beacon->set_compat(compat); + beacon->set_fs(g_conf().get_val<std::string>("mds_join_fs")); // piggyback the sys info on beacon msg if (want_state == MDSMap::STATE_BOOT) { map<string, string> sys_info; |