You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Minio client serializes the VersioningConfiguration model and sends it as XML to an S3 compliant server. However, it defines the XML tag for MfaDelete incorrectly as <MFADelete>, whereas according to the XSD (XML Schema Definition) for S3, it should be <MfaDelete>. This inconsistency in tag naming breaks XML validation when interacting with S3 compliant servers.
Actual Behavior:
The Minio client serializes the VersioningConfiguration model with the incorrect XML tag <MFADelete>, causing XML validation errors when interacting with S3 compliant servers.
HTTP/1.1 400
Content-Type: application/xml
x-amz-id-2: txb8396c6bef054cd19e38f-0000000000
x-amz-request-id: txb8396c6bef054cd19e38f-0000000000
X-Trans-Id: txb8396c6bef054cd19e38f-0000000000
X-Openstack-Request-Id: txb8396c6bef054cd19e38f-0000000000
Date: Fri, 22 Sep 2023 13:27:12 GMT
Transfer-Encoding: chunked
Connection: keep-alive
<?xml version='1.0' encoding='UTF-8'?>
<Error><Code>MalformedXML</Code><Message>The XML you provided was not well-formed or did not validate against our published schema</Message><RequestId>txb8396c6bef054cd19e38f-0000000000</RequestId></Error>
Expected Behavior:
The Minio client should serialize the VersioningConfiguration model with the correct XML tag <MfaDelete> to ensure compatibility with S3 server validation.
Additional Information:
Version : 8.5.6
The text was updated successfully, but these errors were encountered:
Issue description:
The Minio client serializes the
VersioningConfiguration
model and sends it as XML to an S3 compliant server. However, it defines the XML tag for MfaDelete incorrectly as<MFADelete>
, whereas according to the XSD (XML Schema Definition) for S3, it should be<MfaDelete>
. This inconsistency in tag naming breaks XML validation when interacting with S3 compliant servers.Actual Behavior:
The Minio client serializes the
VersioningConfiguration
model with the incorrect XML tag<MFADelete>
, causing XML validation errors when interacting with S3 compliant servers.Http request
Http response
Expected Behavior:
The Minio client should serialize the
VersioningConfiguration
model with the correct XML tag<MfaDelete>
to ensure compatibility with S3 server validation.Additional Information:
Version : 8.5.6
The text was updated successfully, but these errors were encountered: