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 @@ -130,7 +130,7 @@ class ServerlessDynamodbLocal {
130
130
131
131
if ( options && options . online ) {
132
132
this . serverlessLog ( "Connecting to online tables..." ) ;
133
- if ( ! options . region ) {
133
+ if ( ! options . region ) {
134
134
throw new Error ( "please specify the region" ) ;
135
135
}
136
136
dynamoOptions = {
@@ -158,7 +158,7 @@ class ServerlessDynamodbLocal {
158
158
}
159
159
160
160
seedHandler ( ) {
161
- const options = this . options ;
161
+ const options = this . options ;
162
162
const dynamodb = this . dynamodbOptions ( options ) ;
163
163
164
164
return BbPromise . each ( this . seedSources , ( source ) => {
@@ -279,6 +279,9 @@ class ServerlessDynamodbLocal {
279
279
migration . SSESpecification . Enabled = migration . SSESpecification . SSEEnabled ;
280
280
delete migration . SSESpecification . SSEEnabled ;
281
281
}
282
+ if ( migration . PointInTimeRecoverySpecification ) {
283
+ delete migration . PointInTimeRecoverySpecification ;
284
+ }
282
285
if ( migration . Tags ) {
283
286
delete migration . Tags ;
284
287
}
You can’t perform that action at this time.
0 commit comments