File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ class ServerlessDynamodbLocal {
124
124
125
125
if ( options && options . online ) {
126
126
this . serverlessLog ( "Connecting to online tables..." ) ;
127
- if ( ! options . region ) {
127
+ if ( ! options . region ) {
128
128
throw new Error ( "please specify the region" ) ;
129
129
}
130
130
dynamoOptions = {
@@ -152,7 +152,7 @@ class ServerlessDynamodbLocal {
152
152
}
153
153
154
154
seedHandler ( ) {
155
- const options = this . options ;
155
+ const options = this . options ;
156
156
const dynamodb = this . dynamodbOptions ( options ) ;
157
157
158
158
return BbPromise . each ( this . seedSources , ( source ) => {
@@ -273,6 +273,9 @@ class ServerlessDynamodbLocal {
273
273
migration . SSESpecification . Enabled = migration . SSESpecification . SSEEnabled ;
274
274
delete migration . SSESpecification . SSEEnabled ;
275
275
}
276
+ if ( migration . PointInTimeRecoverySpecification ) {
277
+ delete migration . PointInTimeRecoverySpecification
278
+ }
276
279
if ( migration . Tags ) {
277
280
delete migration . Tags ;
278
281
}
You can’t perform that action at this time.
0 commit comments