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 09aca0a commit 50b6be9Copy full SHA for 50b6be9
Makefile
@@ -74,7 +74,7 @@ migrate-test: hack/migrate/go.mod
74
cd hack/migrate && go run ./main.go
75
76
cp-playbook-schema:
77
- cp ../incident-commander/config/schemas/playbook-spec.schema.json schema/
+ cp ../mission-control/config/schemas/playbook-spec.schema.json schema/
78
79
fmt_json:
80
ls fixtures/expectations/*.json | while read -r jf; do \
context/context.go
@@ -189,7 +189,7 @@ func (k Context) WithSubject(subject string) Context {
189
190
func (k Context) Subject() string {
191
subject := k.Value("rbac-subject")
192
- if subject != "" {
+ if subject != nil {
193
return subject.(string)
194
}
195
0 commit comments