From: Daniel Gryniewicz Date: Thu, 5 May 2022 14:27:12 +0000 (-0400) Subject: RGW - Fix NoSuchTagSet error X-Git-Tag: v18.0.0~864^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a0ae10eb44217a2a1b084503e2fc131ab9bc2264;p=ceph.git RGW - Fix NoSuchTagSet error 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 Signed-off-by: Daniel Gryniewicz --- diff --git a/src/rgw/rgw_common.cc b/src/rgw/rgw_common.cc index db7337def015..e04a26fc0946 100644 --- a/src/rgw/rgw_common.cc +++ b/src/rgw/rgw_common.cc @@ -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"}}, });