From 9651ed95894707d6d5517979b18a8acdbcc1b004 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Fri, 21 Apr 2017 15:04:48 -0400 Subject: [PATCH] radosgw-admin: warn that 'realm rename' does not update other clusters Fixes: http://tracker.ceph.com/issues/19746 Signed-off-by: Casey Bodley (cherry picked from commit 8a459c768ffecd689a53a79dfe33eb8f1bbc318f) --- src/rgw/rgw_admin.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rgw/rgw_admin.cc b/src/rgw/rgw_admin.cc index d1ad3467e9f18..d3211b9c54fd9 100644 --- a/src/rgw/rgw_admin.cc +++ b/src/rgw/rgw_admin.cc @@ -3095,6 +3095,9 @@ int main(int argc, char **argv) cerr << "realm.rename failed: " << cpp_strerror(-ret) << std::endl; return -ret; } + cout << "Realm name updated. Note that this change only applies to " + "the current cluster, so this command must be run separately " + "on each of the realm's other clusters." << std::endl; } break; case OPT_REALM_SET: -- 2.39.5