Browse Source

fix: ovh cloud endpoint correction

re #458

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/475/head
Pranav C 3 years ago
parent
commit
4ae513556e
  1. 2
      packages/nocodb/src/plugins/ovhCloud/OvhCloud.ts

2
packages/nocodb/src/plugins/ovhCloud/OvhCloud.ts

@ -71,7 +71,7 @@ export default class OvhCloud implements IStorageAdapter {
s3Options.accessKeyId = this.input.access_key
s3Options.secretAccessKey = this.input.access_secret;
s3Options.endpoint = new AWS.Endpoint(`ewr1.vultrobjects.com`);
s3Options.endpoint = new AWS.Endpoint(`s3.${this.input.region}.cloud.ovh.net`);
this.s3Client = new AWS.S3(s3Options);

Loading…
Cancel
Save