This repository has been archived by the owner on Mar 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Unable to round trip data #387
Comments
jcoyne
added a commit
that referenced
this issue
Apr 12, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 12, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 12, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 12, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 23, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 24, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
jcoyne
added a commit
that referenced
this issue
Apr 24, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
eefahy
pushed a commit
that referenced
this issue
Apr 24, 2018
This makes it possible to round trip our data without loosing empty lists. Note, dynamodb doesn't support empty strings, and these changes do nothing to work around that. Fixes #387 See: aws/aws-sdk-go#682
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When you do a GET request for a resource and it has an empty array for a field such as
structural.hasMembers
, TACO returns anull
value. This is not a valid value as it's supposed to be an empty array.I believe this is caused by
dynamodbattribute.MarshalMap
(used indb/insert.go
). See aws/aws-sdk-go-v2#115The text was updated successfully, but these errors were encountered: