File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
java/com/redhat/exhort/integration/trustedcontent Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ public ProviderResponse responseToIssues(
147147 }
148148
149149 private Vulnerability filterFixed (Vulnerability a , Vulnerability b ) {
150- if (!FIXED_STATUSES .contains (a .getStatus ())) {
150+ if (a . getStatus () != null && !FIXED_STATUSES .contains (a .getStatus ())) {
151151 return a ;
152152 }
153153 return b ;
Original file line number Diff line number Diff line change @@ -47,4 +47,5 @@ trustedcontent.recommendation.ubi.mapping.debian=${trustedcontent.recommendation
4747trustedcontent.recommendation.ubi.mapping.fedora =${trustedcontent.recommendation.ubi.purl.ubi9}
4848trustedcontent.recommendation.ubi.mapping.amazonlinux =${trustedcontent.recommendation.ubi.purl.ubi9}
4949
50- %prod.quarkus.redis.hosts =redis://${db.redis.host:localhost}:${db.redis.port:6379}/
50+ %prod.quarkus.redis.hosts =redis://${db.redis.host:localhost}:${db.redis.port:6379}/
51+ %dev.quarkus.keycloak.devservices.enabled =false
You can’t perform that action at this time.
0 commit comments