Skip to content

Commit 45e78ed

Browse files
Update internal/namespaces/object/v1/s3configfile.go
Co-authored-by: Olivier Cano <[email protected]>
1 parent 627da63 commit 45e78ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

internal/namespaces/object/v1/s3configfile.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,15 @@ func newS3Config(ctx context.Context, region scw.Region, name string) (s3config,
9999
return s3config{}, errors.New("no project ID found")
100100
}
101101

102+
if projectID != "" {
103+
accessKey+="@"+projectID
104+
}
102105
config := s3config{
103106
AccessKey: accessKey,
104107
SecretKey: secretKey,
105108
Region: region,
106109
Name: name,
107110
ctx: ctx,
108-
ProjectID: projectID,
109111
}
110112

111113
return config, nil

0 commit comments

Comments
 (0)