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
Create Table command in AppStack.ts throws an exception if the specified table already exists in DynamoDB. Prevents SST from starting. In other words, the command is not idempotent. We should check if the table exists first, and if not, create it then.
Steps to reproduce
Un-comment the
const trainspaceRunTable = new Table(...);
lines of code, and then type dlp-cli start.
It should complain about the specified table already existing, and then fail to start.
The text was updated successfully, but these errors were encountered:
Operating system
Windows 11
Bug description
Create Table command in AppStack.ts throws an exception if the specified table already exists in DynamoDB. Prevents SST from starting. In other words, the command is not idempotent. We should check if the table exists first, and if not, create it then.
Steps to reproduce
Un-comment the
lines of code, and then type dlp-cli start.
It should complain about the specified table already existing, and then fail to start.
The text was updated successfully, but these errors were encountered: