mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-17 02:25:14 +00:00
lib/model: Don't bump seq on error in index handler (#9459)
This commit is contained in:
parent
73cc5553b6
commit
8c8167a4ab
@ -293,7 +293,9 @@ func (s *indexHandler) sendIndexTo(ctx context.Context, fset *db.FileSet) error
|
||||
return err
|
||||
}
|
||||
|
||||
err = batch.Flush()
|
||||
if err := batch.Flush(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// Use the sequence of the snapshot we iterated as a starting point for the
|
||||
// next run. Previously we used the sequence of the last file we sent,
|
||||
@ -302,7 +304,7 @@ func (s *indexHandler) sendIndexTo(ctx context.Context, fset *db.FileSet) error
|
||||
// reverted). No point trying to send nothing again.
|
||||
s.prevSequence = snap.Sequence(protocol.LocalDeviceID)
|
||||
|
||||
return err
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *indexHandler) receive(fs []protocol.FileInfo, update bool, op string) error {
|
||||
|
Loading…
Reference in New Issue
Block a user