Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atomic operations cause strange behaviour #49

Open
Cussa opened this issue Feb 2, 2024 · 0 comments
Open

Atomic operations cause strange behaviour #49

Cussa opened this issue Feb 2, 2024 · 0 comments

Comments

@Cussa
Copy link

Cussa commented Feb 2, 2024

First of all, thanks for the amazing tool!

I am working on a project using Localstack to development, and we use the DynamoDB-Manager to check the data we are putting into the database.

However, we use DynamoDB Atomic operations, which means that at some points we send some SET commands to the database.

When I check the data using the aws cli, this is the response I get:

{
    "Item": {
        "DbVersion": {
            "N": "0"
        },
        "Roles": {
            "SS": [
                "admin"
            ]
        },
        "Id": {
            "S": "0123"
        }
    }
}

However, when I get the same item using the DynamoDB-Manager, this is the response I get:

{
    "DbVersion": 0,
    "Roles": {
        "wrapperName": "Set",
        "values": [
            "admin"
        ],
        "type": "String"
    },
    "Id": "0123"
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant