Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exp/lighthorizon: Refactor single-process index builder. #4410

Merged
merged 10 commits into from
May 31, 2022
Prev Previous commit
Next Next commit
More accurate progress string lol
  • Loading branch information
Shaptic committed May 25, 2022
commit ed91d7aa035233e20bc142a57e07e31cb8c578b6
4 changes: 2 additions & 2 deletions exp/lighthorizon/index/cmd/single/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func main() {
return err
}

postProgress("Reading checkpoints",
postProgress("Reading ledgers",
nprocessed, uint64(ledgerCount), startTime)

// Upload indices once per checkpoint to save memory
Expand All @@ -143,7 +143,7 @@ func main() {
panic(err)
}

postProgress("Reading checkpoints",
postProgress("Reading ledgers",
uint64(ledgerCount), uint64(ledgerCount), startTime)

// Assertion for testing
Expand Down