Skip to content

Commit

Permalink
fix: Update code
Browse files Browse the repository at this point in the history
  • Loading branch information
larshelge committed Dec 16, 2024
1 parent ecec556 commit def2c08
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,13 @@ public void create(AnalyticsTableUpdateParams params, JobProgress progress) {

AnalyticsTableType tableType = getAnalyticsTableType();

Clock clock =
new Clock(log)
.startClock()
.logTime(
"Starting update of type: {}, table name: '{}', parallel jobs: {}",
tableType,
tableType.getTableName(),
parallelJobs);
Clock clock = new Clock(log).startClock();

clock.logTime(
"Starting update of type: {}, table name: '{}', parallel jobs: {}",
tableType,
tableType.getTableName(),
parallelJobs);

progress.startingStage("Validating analytics table: {}", tableType);
boolean validState = tableManager.validState();
Expand Down

0 comments on commit def2c08

Please sign in to comment.