Merge pull request #5376 from Budibase/fix/5322
Fix for DynamoDB queries - connecting with endpoint set
This commit is contained in:
commit
3dacffffcd
|
@ -131,11 +131,12 @@ module DynamoModule {
|
||||||
|
|
||||||
constructor(config: DynamoDBConfig) {
|
constructor(config: DynamoDBConfig) {
|
||||||
this.config = config
|
this.config = config
|
||||||
if (!this.config.endpoint) {
|
if (this.config.endpoint && !this.config.endpoint.includes("localhost")) {
|
||||||
this.connect()
|
this.connect()
|
||||||
}
|
}
|
||||||
let options = {
|
let options = {
|
||||||
correctClockSkew: true,
|
correctClockSkew: true,
|
||||||
|
region: this.config.region || AWS_REGION,
|
||||||
endpoint: config.endpoint ? config.endpoint : undefined,
|
endpoint: config.endpoint ? config.endpoint : undefined,
|
||||||
}
|
}
|
||||||
this.client = new AWS.DynamoDB.DocumentClient(options)
|
this.client = new AWS.DynamoDB.DocumentClient(options)
|
||||||
|
|
Loading…
Reference in New Issue