Skip to content

Commit

Permalink
Merge pull request #348 from VladoLavor/master
Browse files Browse the repository at this point in the history
added default resync plugin dependency to etcd options
  • Loading branch information
ondrej-fabry authored Oct 4, 2018
2 parents a5986c8 + 1ff8991 commit d988900
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release v1.6 (2018-10-02)
# Release v1.6 (2018-10-04)

## Major topics

Expand Down Expand Up @@ -42,6 +42,7 @@
* GRPC "listen and serve" call was moved to after init, which prevents calling services
which were not yet registered. Also fixed a bug causing occasional panic if GRPC plugin
was disabled.
* ETCD reconnect resync fixed

# Release v1.5 (2018-08-24)

Expand Down
2 changes: 2 additions & 0 deletions db/keyval/etcd/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package etcd

import (
"github.com/ligato/cn-infra/datasync/resync"
"github.com/ligato/cn-infra/health/statuscheck"
)

Expand All @@ -27,6 +28,7 @@ func NewPlugin(opts ...Option) *Plugin {

p.PluginName = "etcd"
p.StatusCheck = &statuscheck.DefaultPlugin
p.Resync = &resync.DefaultPlugin

for _, o := range opts {
o(p)
Expand Down

0 comments on commit d988900

Please sign in to comment.