Merge pull request #5087 from Budibase/fix/local-dynamo

ignore AWS config when using endpoint field
This commit is contained in:
Martin McKeaveney 2022-03-25 12:25:32 +00:00 committed by GitHub
commit bb0144e85f
1 changed files with 3 additions and 1 deletions

View File

@ -131,7 +131,9 @@ module DynamoModule {
constructor(config: DynamoDBConfig) {
this.config = config
this.connect()
if (!this.config.endpoint) {
this.connect()
}
let options = {
correctClockSkew: true,
endpoint: config.endpoint ? config.endpoint : undefined,