Skip to content

Commit

Permalink
Fixed deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
blaubaer committed Aug 27, 2024
1 parent 5383ea5 commit e7ac65b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/configuration/authorization-local_with_pam.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var (
)

func (this AuthorizationLocal) FeatureFlags() []string {
return "local[pam]"
return []string{"local[pam]"}
}
2 changes: 1 addition & 1 deletion pkg/configuration/authorization-local_without_pam.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var (
)

func (this AuthorizationLocal) FeatureFlags() []string {
return "local"
return []string{"local"}
}

0 comments on commit e7ac65b

Please sign in to comment.