Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/identifier/policyidentifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
return result, err
}

case *FullyQualifiedObligation:

Check failure on line 62 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / vulncheck (service)

undefined: FullyQualifiedObligation

Check failure on line 62 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / go (lib/identifier)

undefined: FullyQualifiedObligation

Check failure on line 62 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / integration tests

undefined: FullyQualifiedObligation

Check failure on line 62 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / benchmark tests

undefined: FullyQualifiedObligation
parsed, err = parseObligationFqn(identifier)

Check failure on line 63 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / vulncheck (service)

undefined: parseObligationFqn

Check failure on line 63 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / go (lib/identifier)

undefined: parseObligationFqn

Check failure on line 63 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / integration tests

undefined: parseObligationFqn

Check failure on line 63 in lib/identifier/policyidentifier.go

View workflow job for this annotation

GitHub Actions / benchmark tests

undefined: parseObligationFqn
if err != nil {
return result, err
}

case *FullyQualifiedResourceMappingGroup:
parsed, err = parseResourceMappingGroupFqn(identifier)
if err != nil {
Expand Down
Loading