Resolved alerts

This commit is contained in:
Nick Goupinets 2020-11-30 09:09:38 -05:00
parent da3df49089
commit db28a94eee
2 changed files with 4 additions and 1 deletions

View File

@ -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);

View File

@ -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();