]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
RGW - Fix NoSuchTagSet error 46167/head
authorDaniel Gryniewicz <dang@redhat.com>
Thu, 5 May 2022 14:27:12 +0000 (10:27 -0400)
committerDaniel Gryniewicz <dang@redhat.com>
Thu, 5 May 2022 16:10:53 +0000 (12:10 -0400)
A bug in AWS documentation caused this to be named "NoSuchTagSetError",
when the proper name (now fixed in the docs) is "NoSuchTagSet".  Fix
this so we match AWS.

Fixes: https://tracker.ceph.com/issues/55460
Author: Peter Gerber <peter@arbitrary.ch>
Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
src/rgw/rgw_common.cc

index db7337def015c6c674ccc619d03b5ec3e23eb914..e04a26fc0946cf12a2a51a36953eafdd76dcedff 100644 (file)
@@ -128,7 +128,7 @@ rgw_http_errors rgw_http_s3_errors({
     { ERR_SERVICE_UNAVAILABLE, {503, "ServiceUnavailable"}},
     { ERR_RATE_LIMITED, {503, "SlowDown"}},
     { ERR_ZERO_IN_URL, {400, "InvalidRequest" }},
-    { ERR_NO_SUCH_TAG_SET, {404, "NoSuchTagSetError"}},
+    { ERR_NO_SUCH_TAG_SET, {404, "NoSuchTagSet"}},
     { ERR_NO_SUCH_BUCKET_ENCRYPTION_CONFIGURATION, {404, "ServerSideEncryptionConfigurationNotFoundError"}},
 });