Skip to content

Commit

Permalink
Merge pull request #267 from cybozu-go/check-error-in-etcd-watch
Browse files Browse the repository at this point in the history
Fix to check error of etcd watch response
  • Loading branch information
morimoto-cybozu authored Jul 28, 2023
2 parents 4f95d4e + 35976c4 commit c67aaea
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed

- Fix to check error of etcd watch response in [#267](https://github.com/cybozu-go/sabakan/pull/267)

## [2.13.2] - 2023-02-24

### Changed
Expand Down
7 changes: 6 additions & 1 deletion models/etcd/watch_stateful.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,12 @@ RETRY:
env.Stop()

for resp := range rch {
if resp.CompactRevision != 0 {
err := resp.Err()
if err != nil {
if resp.CompactRevision == 0 {
return err
}

log.Warn("database has been compacted; re-initializing", map[string]interface{}{
"compactedrev": resp.CompactRevision,
})
Expand Down
3 changes: 3 additions & 0 deletions models/etcd/watch_stateless.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ func (d *driver) startStatelessWatcher(ctx context.Context, ch, indexCh chan<- s
clientv3.WithRev(rev+1),
)
for wresp := range rch {
if err := wresp.Err(); err != nil {
return err
}
for _, ev := range wresp.Events {
var err error
key := string(ev.Kv.Key)
Expand Down

0 comments on commit c67aaea

Please sign in to comment.