Skip to content

Commit

Permalink
self review
Browse files Browse the repository at this point in the history
  • Loading branch information
liyuheng55555 committed Mar 18, 2024
1 parent 89984fb commit 6e52d0c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ public String getMeasurementsString(List<Operation> operations) {
PersistenceFactory persistenceFactory = new PersistenceFactory();
TestDataPersistence recorder = persistenceFactory.getPersistence();
StringBuilder stringBuilder = new StringBuilder("\n");
stringBuilder.append(Thread.currentThread().getName()).append(" measurements:").append('\n');
stringBuilder
.append("Create schema cost ")
.append(String.format("%.2f", createSchemaFinishTime))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class BaseMode {
protected List<SchemaClient> schemaClients = new ArrayList<>();
protected Measurement baseModeMeasurement = new Measurement();
protected long startTime = 0;
private Timer middleMeasureTimer = new Timer();
private Timer middleMeasureTimer = new Timer("ShowResultPeriodically");

protected abstract boolean preCheck();

Expand Down

0 comments on commit 6e52d0c

Please sign in to comment.