Skip to content

Commit

Permalink
Correct reingest-range output command name when invoking detect-gaps (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio authored Oct 13, 2021
1 parent b147bca commit d906eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/horizon/cmd/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ var dbDetectGapsCmd = &cobra.Command{
fmt.Println("Horizon commands to run in order to fill in the gaps:")
cmdname := os.Args[0]
for _, g := range gaps {
fmt.Printf("%s db reingest %d %d\n", cmdname, g.StartSequence, g.EndSequence)
fmt.Printf("%s db reingest range %d %d\n", cmdname, g.StartSequence, g.EndSequence)
}
return nil
},
Expand Down

0 comments on commit d906eff

Please sign in to comment.