Skip to content

Commit 4589771

Browse files
authored
Merge pull request #202 from jhowardmsft/etcd-io-bbolt
boltdb/bolt is not maintained. Use bbolt instead.
2 parents 791d3fc + da0a707 commit 4589771

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: go
22

33
go:
4-
- 1.7.1
4+
- 1.8.7
55

66
# let us have speedy Docker-based Travis workers
77
sudo: false
@@ -17,7 +17,7 @@ before_install:
1717
before_script:
1818
- script/travis_consul.sh 0.6.3
1919
- script/travis_etcd.sh 3.0.0
20-
- script/travis_zk.sh 3.5.1-alpha
20+
- script/travis_zk.sh 3.5.4-beta
2121

2222
script:
2323
- ./consul agent -server -bootstrap -advertise=127.0.0.1 -data-dir /tmp/consul -config-file=./config.json 1>/dev/null &

script/travis_zk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if [ $# -gt 0 ] ; then
44
ZK_VERSION="$1"
55
else
6-
ZK_VERSION="3.4.7"
6+
ZK_VERSION="3.5.4-beta"
77
fi
88

99
wget "http://apache.cs.utah.edu/zookeeper/zookeeper-${ZK_VERSION}/zookeeper-${ZK_VERSION}.tar.gz"

store/boltdb/boltdb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"sync/atomic"
1111
"time"
1212

13-
"github.com/boltdb/bolt"
1413
"github.com/docker/libkv"
1514
"github.com/docker/libkv/store"
15+
bolt "go.etcd.io/bbolt"
1616
)
1717

1818
var (

0 commit comments

Comments
 (0)