Skip to content

Commit

Permalink
Update migration/runner.go
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg authored Dec 3, 2024
1 parent d32ecc7 commit c3f3a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migration/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func RunMigration(ctx context.Context, cfg Config, cache MigrationCache, store c
rate := float64(doneNow) / elapsed.Seconds()

log.Log(rt.INFO, "Performing migration: %d of %d jobs processed (%.0f/s) [%v elapsed]",
doneNow, jobsNow, rate, elapsed.Round(100*time.Millisecond))
doneNow, jobsNow, rate, elapsed.Round(time.Second))
case <-workersFinished:
return
case <-ctx.Done():
Expand Down

0 comments on commit c3f3a34

Please sign in to comment.