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 {
130130
131131 if ( options && options . online ) {
132132 this . serverlessLog ( "Connecting to online tables..." ) ;
133- if ( ! options . region ) {
133+ if ( ! options . region ) {
134134 throw new Error ( "please specify the region" ) ;
135135 }
136136 dynamoOptions = {
@@ -158,7 +158,7 @@ class ServerlessDynamodbLocal {
158158 }
159159
160160 seedHandler ( ) {
161- const options = this . options ;
161+ const options = this . options ;
162162 const dynamodb = this . dynamodbOptions ( options ) ;
163163
164164 return BbPromise . each ( this . seedSources , ( source ) => {
@@ -279,6 +279,9 @@ class ServerlessDynamodbLocal {
279279 migration . SSESpecification . Enabled = migration . SSESpecification . SSEEnabled ;
280280 delete migration . SSESpecification . SSEEnabled ;
281281 }
282+ if ( migration . PointInTimeRecoverySpecification ) {
283+ delete migration . PointInTimeRecoverySpecification ;
284+ }
282285 if ( migration . Tags ) {
283286 delete migration . Tags ;
284287 }
You can’t perform that action at this time.
0 commit comments