Skip to content

Commit

Permalink
Merge pull request #202 from jhowardmsft/etcd-io-bbolt
Browse files Browse the repository at this point in the history
boltdb/bolt is not maintained. Use bbolt instead.
  • Loading branch information
thaJeztah committed Sep 12, 2018
2 parents 791d3fc + da0a707 commit 4589771
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

go:
- 1.7.1
- 1.8.7

# let us have speedy Docker-based Travis workers
sudo: false
Expand All @@ -17,7 +17,7 @@ before_install:
before_script:
- script/travis_consul.sh 0.6.3
- script/travis_etcd.sh 3.0.0
- script/travis_zk.sh 3.5.1-alpha
- script/travis_zk.sh 3.5.4-beta

script:
- ./consul agent -server -bootstrap -advertise=127.0.0.1 -data-dir /tmp/consul -config-file=./config.json 1>/dev/null &
Expand Down
2 changes: 1 addition & 1 deletion script/travis_zk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if [ $# -gt 0 ] ; then
ZK_VERSION="$1"
else
ZK_VERSION="3.4.7"
ZK_VERSION="3.5.4-beta"
fi

wget "http://apache.cs.utah.edu/zookeeper/zookeeper-${ZK_VERSION}/zookeeper-${ZK_VERSION}.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion store/boltdb/boltdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"sync/atomic"
"time"

"github.com/boltdb/bolt"
"github.com/docker/libkv"
"github.com/docker/libkv/store"
bolt "go.etcd.io/bbolt"
)

var (
Expand Down

0 comments on commit 4589771

Please sign in to comment.