diff options
author | Sage Weil <sage@redhat.com> | 2018-08-12 22:28:36 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2018-08-31 22:54:58 +0200 |
commit | 487cfabc4f626297ea29be3665591076769569e7 (patch) | |
tree | fbcde7687bf195c4c3d20f4514414ec0755eb8c4 /src | |
parent | rgw: remove auid member from RGWUserInfo (diff) | |
download | ceph-487cfabc4f626297ea29be3665591076769569e7.tar.xz ceph-487cfabc4f626297ea29be3665591076769569e7.zip |
radosgw-admin: remove -a --auth-uid arg
It was already a no-op.
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/rgw/rgw_admin.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rgw/rgw_admin.cc b/src/rgw/rgw_admin.cc index 3cd7e267411..dc71ab85102 100644 --- a/src/rgw/rgw_admin.cc +++ b/src/rgw/rgw_admin.cc @@ -2845,11 +2845,6 @@ int main(int argc, const char **argv) // do nothing } else if (ceph_argparse_binary_flag(args, i, &commit, NULL, "--commit", (char*)NULL)) { // do nothing - } else if (ceph_argparse_witharg(args, i, &tmp, errs, "-a", "--auth-uid", (char*)NULL)) { - if (!errs.str().empty()) { - cerr << errs.str() << std::endl; - exit(EXIT_FAILURE); - } } else if (ceph_argparse_witharg(args, i, &val, "--min-rewrite-size", (char*)NULL)) { min_rewrite_size = (uint64_t)atoll(val.c_str()); } else if (ceph_argparse_witharg(args, i, &val, "--max-rewrite-size", (char*)NULL)) { |