Skip to content

Commit b348e44

Browse files
committed
s3 href endpoint update
1 parent 319a642 commit b348e44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/integrations/gei-s3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gei-s3",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Automatically generated by graphql-editor-cli",
55
"main": "lib/index.js",
66
"scripts": {

packages/integrations/gei-s3/src/S3.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const initializeS3Client = (): S3ClientDetails => {
3030
'SPACES_SECRET',
3131
]);
3232

33-
const endpoint = process.env.SPACES_ENDPOINT ? `${SPACES_REGION}.${process.env.SPACES_ENDPOINT}` : undefined;
34-
33+
const endpoint = process.env.SPACES_ENDPOINT ? `https://${SPACES_REGION}.${process.env.SPACES_ENDPOINT}` : undefined;
34+
console.log(endpoint)
3535
s3 = {
3636
client: new S3Client({
3737
region: SPACES_REGION,

0 commit comments

Comments
 (0)