Resolved alerts
This commit is contained in:
parent
da3df49089
commit
db28a94eee
|
@ -58,7 +58,7 @@ public class MdmResourceFilteringSvc {
|
|||
public boolean shouldBeProcessed(IAnyResource theResource) {
|
||||
//TODO GGG ask KHS: Skip the infinite loop, whoops. Better way to do this? tighter subscription criteria?
|
||||
if (MdmUtil.isMdmManaged(theResource)) {
|
||||
ourLog.debug("MDM Message handler is dropping [{}] as it is MDM-managed.");
|
||||
ourLog.debug("MDM Message handler is dropping [{}] as it is MDM-managed.", theResource);
|
||||
return false;
|
||||
}
|
||||
String resourceType = myFhirContext.getResourceType(theResource);
|
||||
|
|
|
@ -63,6 +63,9 @@ public class PrimitiveTypeComparingPredicate implements BiPredicate {
|
|||
if (val1 == null && val2 != null) {
|
||||
return false;
|
||||
}
|
||||
if (val1 != null && val2 == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Object actualVal1 = val1.getValue();
|
||||
Object actualVal2 = val2.getValue();
|
||||
|
|
Loading…
Reference in New Issue