This commit is contained in:
Jonathan Shook 2025-01-02 12:14:43 -06:00
parent 548bdd0e98
commit 7312d685f7

View File

@ -209,15 +209,13 @@ public class FieldVerifier implements Validator {
logbuffer.append(" actual:'").append(result.get(rname)).append("'"); logbuffer.append(" actual:'").append(result.get(rname)).append("'");
diff++; diff++;
} }
} }
} }
} }
if (diff == 0) { if (diff == 0) {
resultsVerifiedError.inc();
} else {
resultsOkCounter.inc(); resultsOkCounter.inc();
} else {
resultsVerifiedError.inc();
throw new RuntimeException("in cycle " + cycle + ", " + logbuffer.toString()); throw new RuntimeException("in cycle " + cycle + ", " + logbuffer.toString());
} }