diff --git a/bolt_store.go b/bolt_store.go index a1f9f0b..f4336d7 100644 --- a/bolt_store.go +++ b/bolt_store.go @@ -3,7 +3,7 @@ package raftboltdb import ( "errors" - "github.com/boltdb/bolt" + bolt "go.etcd.io/bbolt" "github.com/hashicorp/raft" ) diff --git a/bolt_store_test.go b/bolt_store_test.go index 12b09b2..bc01de4 100644 --- a/bolt_store_test.go +++ b/bolt_store_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/boltdb/bolt" + bolt "go.etcd.io/bbolt" "github.com/hashicorp/raft" )