Skip to content

Commit ce7cb11

Browse files
authored
Forced Table Prefix Bug Fix
Tables were getting automatically prefixed with the stage during start as a result of commit 5da9b02.
1 parent ed14b98 commit ce7cb11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class ServerlessDynamodbLocal {
184184

185185
return new BbPromise(function(resolve, reject) {
186186
let dynamodb = self.dynamodbOptions(region),
187-
tableOptions = self.tableOptions(options.stage);
187+
tableOptions = self.tableOptions();
188188
dynamodbMigrations.init(dynamodb, tableOptions.path);
189189
dynamodbMigrations.executeAll(tableOptions).then(resolve, reject);
190190
});

0 commit comments

Comments
 (0)