fixed typo, updated validate response to take a list of QRecord objects

This commit is contained in:
Tim Chamberlain
2023-03-15 10:50:23 -05:00
parent 54d3e4a6c8
commit 1429d1000c
2 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ public class GetAction
{
if(BackendQueryFilterUtils.doesRecordMatch(filter, recordToCache))
{
LOG.info("Not catching record because it matches a use case's filter exclusion", new LogPair("record", recordToCache), new LogPair("filter", filter));
LOG.info("Not caching record because it matches a use case's filter exclusion", new LogPair("record", recordToCache), new LogPair("filter", filter));
shouldCacheRecord = false;
break recordMatchExclusionLoop;
}