*: replace 'boltdb' import paths with 'coreos/bbolt'

Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
release-3.3
Gyu-Ho Lee 2017-07-05 14:32:13 -07:00
parent 75665c0fd0
commit 318e9c766f
10 changed files with 10 additions and 10 deletions

View File

@ -27,7 +27,7 @@ import (
"reflect"
"strings"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
"github.com/coreos/etcd/etcdserver"
"github.com/coreos/etcd/etcdserver/etcdserverpb"
"github.com/coreos/etcd/etcdserver/membership"

View File

@ -25,7 +25,7 @@ import (
"sync/atomic"
"time"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
"github.com/coreos/pkg/capnslog"
)

View File

@ -22,7 +22,7 @@ import (
"testing"
"time"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
func TestBackendClose(t *testing.T) {

View File

@ -22,7 +22,7 @@ import (
"sync/atomic"
"time"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
type BatchTx interface {

View File

@ -19,7 +19,7 @@ import (
"testing"
"time"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
func TestBatchTxPut(t *testing.T) {

View File

@ -16,7 +16,7 @@
package backend
import "github.com/boltdb/bolt"
import bolt "github.com/coreos/bbolt"
var boltOpenOptions *bolt.Options = nil

View File

@ -17,7 +17,7 @@ package backend
import (
"syscall"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
// syscall.MAP_POPULATE on linux 2.6.23+ does sequential read-ahead

View File

@ -16,7 +16,7 @@
package backend
import "github.com/boltdb/bolt"
import bolt "github.com/coreos/bbolt"
var boltOpenOptions *bolt.Options = nil

View File

@ -19,7 +19,7 @@ import (
"math"
"sync"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
)
// safeRangeBucket is a hack to avoid inadvertently reading duplicate keys;

View File

@ -18,7 +18,7 @@ import (
"fmt"
"path/filepath"
"github.com/boltdb/bolt"
bolt "github.com/coreos/bbolt"
"github.com/coreos/etcd/mvcc"
"github.com/coreos/etcd/mvcc/backend"
)