Skip to content

Commit

Permalink
bugfix. change object stroe aws to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
ktkfree committed Oct 26, 2023
1 parent cfbf211 commit dd6658c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/usecase/app-group.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (u *AppGroupUsecase) Create(ctx context.Context, dto domain.AppGroup) (id d
tksCloudAccountId := ""
tksObjectStore := "minio"
if cluster.CloudService != domain.CloudService_BYOH {
tksObjectStore = "aws"
tksObjectStore = "s3"
cloudAccounts, err := u.cloudAccountRepo.Fetch(cluster.OrganizationId, nil)
if err != nil {
return "", httpErrors.NewBadRequestError(fmt.Errorf("Failed to get cloudAccounts"), "", "")
Expand Down

0 comments on commit dd6658c

Please sign in to comment.