Closed ewanmellor closed 3 weeks ago
Hey, thanks for the report, I've been able to replicate it. After disabling our customization I'm able to see the message in the exception, checking to see if that's the "right" fix...
A fix for this was release in SDK version 1.3.52 on 10/11/2024. Can you verify whether the problem is resolved with the latest SDK version?
I've filed a ticket on our side to verify. It might be a week or two, we have other work in the pipeline.
Describe the bug
Reading #242 , the error response from Route 53 used to use a custom
InvalidChangeBatch
element. That no longer seems to be the case: my current error response looks like this:This fails to parse using the custom code here:
https://github.com/awslabs/aws-sdk-kotlin/blob/acccef5bcd6905c51751291fa94fdbcfd8029b98/services/route53/common/src/aws/sdk/kotlin/services/route53/internal/ChangeResourceRecordSetsUnmarshalling.kt#L14
This means that the error message is lost to the caller.
Regression Issue
Expected behavior
The error message from the response should be parsed into
InvalidChangeBatch.message
.Current behavior
The error message is not parsed.
Steps to Reproduce
Call
Route53Client.changeResourceRecordSets
with invalid parameters.Possible Solution
One change would be to extend this custom parsing to handle the
<Error>
tag and parse appropriately. Alternatively if someone from AWS can confirm that this endpoint has switched to the "standard" error response then maybe all this custom code can go away.Context
Trying to parse errors from Route 53.
AWS SDK for Kotlin version
1.1.7
Platform (JVM/JS/Native)
Kotlin JVM
Operating system and version
macOS 15