1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00

Fixing issue #5322 - when endpoint is specified for DynamoDB and not in a the region that the whole instance expects it will throw an odd credentials error - making sure connection is commenced everywhere other than localhost.

This commit is contained in:
mike12345567 2022-04-12 18:49:46 +01:00
parent c717273996
commit 94720c10aa

View file

@ -131,11 +131,12 @@ module DynamoModule {
constructor(config: DynamoDBConfig) {
this.config = config
if (!this.config.endpoint) {
if (this.config.endpoint && !this.config.endpoint.includes("localhost")) {
this.connect()
}
let options = {
correctClockSkew: true,
region: this.config.region || AWS_REGION,
endpoint: config.endpoint ? config.endpoint : undefined,
}
this.client = new AWS.DynamoDB.DocumentClient(options)