fix: some cleanup in posix, router and acl

This commit is contained in:
jonaustin09
2023-09-08 12:46:50 -04:00
parent 23b5eb30ed
commit 35fe6d8dee
3 changed files with 14 additions and 5 deletions

View File

@@ -105,7 +105,6 @@ func UpdateACL(input *s3.PutBucketAclInput, acl ACL, iam IAMService) ([]byte, er
if *input.GrantFullControl != "" {
fullControlList = splitUnique(*input.GrantFullControl, ",")
fmt.Println(fullControlList)
for _, str := range fullControlList {
grantees = append(grantees, Grantee{Access: str, Permission: "FULL_CONTROL"})
}