Skip to content

Commit

Permalink
Fix mapping of groups in Kerberos auth. (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
jankaspar committed Jun 1, 2021
1 parent 5c15c09 commit 2604a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/armada/authorization/kerberos.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (authService *KerberosAuthService) mapUserGroups(groupSIDs []string) ([]str
}
prefixedUserGroups := []string{}
for _, group := range userGroups {
prefixedUserGroups = append(groupSIDs, group+authService.groupNameSuffix)
prefixedUserGroups = append(prefixedUserGroups, group+authService.groupNameSuffix)
}
return prefixedUserGroups, nil
}
Expand Down

0 comments on commit 2604a61

Please sign in to comment.