We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26792f7 commit a0bc732Copy full SHA for a0bc732
index.js
@@ -304,7 +304,7 @@ class ServerlessDynamodbLocal {
304
if (migration.Tags) {
305
delete migration.Tags;
306
}
307
- if (migration.BillingMode === 'PAY_PER_REQUEST') {
+ if (migration.BillingMode === "PAY_PER_REQUEST") {
308
delete migration.BillingMode;
309
310
const defaultProvisioning = {
@@ -313,7 +313,7 @@ class ServerlessDynamodbLocal {
313
};
314
migration.ProvisionedThroughput = defaultProvisioning;
315
if (migration.GlobalSecondaryIndexes) {
316
- migration.GlobalSecondaryIndexes.forEach(gsi => {
+ migration.GlobalSecondaryIndexes.forEach((gsi) => {
317
gsi.ProvisionedThroughput = defaultProvisioning;
318
});
319
0 commit comments