Skip to content

Commit 95e36b6

Browse files
committed
MinimumRecordCountValidator: tweak pass msg
1 parent da9ef6c commit 95e36b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hollow/src/main/java/com/netflix/hollow/api/producer/validation/MinimumRecordCountValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public ValidationResult onValidate(HollowProducer.ReadState readState) {
5353
return vrb.failed(message);
5454
}
5555

56-
return vrb.passed(getName() + " numRecords=" + recordCount + ", threshold=" + minRecordCount);
56+
return vrb.passed("MinimumRecordCount type=" + typeName + ", numRecords=" + recordCount + ", threshold=" + minRecordCount);
5757
}
5858

5959
}

0 commit comments

Comments
 (0)