Skip to content

Commit

Permalink
Log at info level instead of throwing UnsupportedOperationException (#95
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ashetkar authored Jan 5, 2024
1 parent 7c5f62a commit 74138b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/yugabyte/sample/apps/AppBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -811,11 +811,11 @@ public void performRead() {
}

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

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

public String getTableName() {
Expand Down

0 comments on commit 74138b9

Please sign in to comment.