We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0e466 commit f268227Copy full SHA for f268227
coderd/rbac/authz.go
@@ -846,8 +846,8 @@ func (r *AuthzCheckRecorder) String() string {
846
}
847
848
checks := make([]string, 0, len(r.checks))
849
- for check, result := range r.checks {
850
- checks = append(checks, fmt.Sprintf("%v=%v", check, result))
+ for _, check := range r.checks {
+ checks = append(checks, fmt.Sprintf("%v=%v", check.name, check.result))
851
852
return strings.Join(checks, "; ")
853
0 commit comments