We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 319a642 commit b348e44Copy full SHA for b348e44
packages/integrations/gei-s3/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gei-s3",
3
- "version": "0.7.0",
+ "version": "0.7.1",
4
"description": "Automatically generated by graphql-editor-cli",
5
"main": "lib/index.js",
6
"scripts": {
packages/integrations/gei-s3/src/S3.ts
@@ -30,8 +30,8 @@ const initializeS3Client = (): S3ClientDetails => {
30
'SPACES_SECRET',
31
]);
32
33
- const endpoint = process.env.SPACES_ENDPOINT ? `${SPACES_REGION}.${process.env.SPACES_ENDPOINT}` : undefined;
34
-
+ const endpoint = process.env.SPACES_ENDPOINT ? `https://${SPACES_REGION}.${process.env.SPACES_ENDPOINT}` : undefined;
+ console.log(endpoint)
35
s3 = {
36
client: new S3Client({
37
region: SPACES_REGION,
0 commit comments