commit | d948f7701638cccadb9a514f722927f8131b0a46 | [log] [tgz] |
---|---|---|
author | khenaidoo <knursimu@ciena.com> | Wed Aug 11 17:49:24 2021 -0400 |
committer | khenaidoo <knursimu@ciena.com> | Tue Oct 05 13:52:05 2021 -0400 |
tree | 98f9ea796e32934954996e55982306e0db59072c | |
parent | 21e54c3ea127cefd9c8649007ee3826098e3c32a [diff] [blame] |
[VOL-4291] Rw-core updates for gRPC migration Change-Id: I8d5a554409115b29318089671ca4e1ab3fa98810
diff --git a/vendor/go.etcd.io/etcd/embed/util.go b/vendor/go.etcd.io/etcd/embed/util.go index 40f3ce9..168e031 100644 --- a/vendor/go.etcd.io/etcd/embed/util.go +++ b/vendor/go.etcd.io/etcd/embed/util.go
@@ -17,7 +17,7 @@ import ( "path/filepath" - "go.etcd.io/etcd/wal" + "github.com/coreos/etcd/wal" ) func isMemberInitialized(cfg *Config) bool { @@ -25,5 +25,6 @@ if waldir == "" { waldir = filepath.Join(cfg.Dir, "member", "wal") } + return wal.Exist(waldir) }