Skip to content

Commit 74138b9

Browse files
authored
Log at info level instead of throwing UnsupportedOperationException (#95)
1 parent 7c5f62a commit 74138b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/yugabyte/sample/apps/AppBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -811,11 +811,11 @@ public void performRead() {
811811
}
812812

813813
public void verifyTotalRowsWritten() throws Exception {
814-
throw new UnsupportedOperationException("Row count check is not supported for this workload");
814+
LOG.info("Row count check is not supported for this workload");
815815
}
816816

817817
public void recordExistingRowCount() throws Exception {
818-
throw new UnsupportedOperationException("Row count check is not supported for this workload");
818+
LOG.info("Row count check is not supported for this workload");
819819
}
820820

821821
public String getTableName() {

0 commit comments

Comments
 (0)