Skip to content

Commit

Permalink
Merge pull request kelseyhightower#636 from okushchenko/fix-etcdv3
Browse files Browse the repository at this point in the history
Fix bug with multiple watches for etcdv3
  • Loading branch information
okushchenko authored Feb 21, 2018
2 parents 1fd1249 + 7114c80 commit 36d874f
Show file tree
Hide file tree
Showing 1,046 changed files with 107,697 additions and 202,713 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ go:
- 1.x
- tip
env:
- VAULT_ADDR='http://127.0.0.1:8200' CONSUL_VERSION=0.9.3 ETCD_VERSION=3.2.8 DYNAMODB_VERSION=2017-02-16 VAULT_VERSION=0.8.1 ZOOKEEPER_VERSION=3.4.10 RANCHER_VERSION=0.6.0
- VAULT_ADDR='http://127.0.0.1:8200' CONSUL_VERSION=0.9.3 ETCD_VERSION=3.3.1 DYNAMODB_VERSION=2017-02-16 VAULT_VERSION=0.8.1 ZOOKEEPER_VERSION=3.4.10 RANCHER_VERSION=0.6.0
services:
- redis
before_install:
Expand All @@ -17,6 +17,7 @@ before_install:
- tar xzf etcd-v${ETCD_VERSION}-linux-amd64.tar.gz
- sudo mv etcd-v${ETCD_VERSION}-linux-amd64/etcd /bin/
- sudo mv etcd-v${ETCD_VERSION}-linux-amd64/etcdctl /bin/
- unset ETCD_VERSION
- etcd &
# install DynamoDB
- sudo pip install awscli
Expand Down
178 changes: 155 additions & 23 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 13 additions & 10 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[prune]
unused-packages = true
go-tests = true

[[constraint]]
name = "github.com/BurntSushi/toml"
version = "0.3.0"
Expand All @@ -12,7 +16,7 @@

[[constraint]]
name = "github.com/coreos/etcd"
version = "=3.2.8"
version = "=3.3.1"

[[constraint]]
name = "github.com/fsnotify/fsnotify"
Expand All @@ -36,33 +40,32 @@

[[constraint]]
name = "github.com/samuel/go-zookeeper"
revision = "c4fab1ac1bec58281ad0667dc3f0907a9476ac47"

[[constraint]]
name = "golang.org/x/net"
revision = "66aacef3dd8a676686c7ae3716979581e8b03c47"

[[constraint]]
name = "gopkg.in/yaml.v2"
branch = "v2"

[[override]]
name = "github.com/ugorji/go"
revision = "ded73eae5db7e7a0ef6f55aace87a2873c5d2b74"
revision = "bdcc60b419d136a85cdf2e7cbcac34b3f1cd6e57"

[[override]]
name = "google.golang.org/grpc"
version = "=1.2.1"
version = "=1.7.5"

[[override]]
name = "golang.org/x/crypto"
revision = "1351f936d976c60a0a48d728281922cf63eafb8d"

[[override]]
name = "golang.org/x/net"
revision = "c8c74377599bd978aee1cf3b9b63a8634051cec2"
revision = "9419663f5a44be8b34ca85f08abc5fe1be11f8a3"

[[override]]
name = "golang.org/x/sys"
revision = "e48874b42435b4347fc52bdee0424a52abc974d7"
revision = "ebfc5b4631820b793c9010c87fd8fef0f39eb082"

[[override]]
name = "github.com/golang/protobuf"
revision = "4bd1920723d7b7c925de087aa32e2187708897f7"
revision = "1e59b77b52bf8e4b449a57e6f79f21226d571845"
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ integration:

dep:
@dep ensure
@dep prune

release:
@docker build -q -t confd_builder -f Dockerfile.build.alpine .
Expand Down
Loading

0 comments on commit 36d874f

Please sign in to comment.