Skip to content

Commit

Permalink
run: start downloading with correct sequence (lastState + 1)
Browse files Browse the repository at this point in the history
Error was introduced with go-osm refactoring.
  • Loading branch information
olt committed May 9, 2019
1 parent 9f95e9f commit 6511ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func Run(baseOpts config.Base) {
downloader := diff.NewDownloader(
baseOpts.DiffDir,
replicationURL,
s.Sequence,
s.Sequence+1,
baseOpts.ReplicationInterval,
)
nextSeq := downloader.Sequences()
Expand Down

0 comments on commit 6511ea5

Please sign in to comment.