dep(chronograf/bolt): replace boltdb dependency with bbolt
parent
390a12bf21
commit
6068e385db
|
@ -99,12 +99,6 @@
|
|||
packages = ["."]
|
||||
revision = "8bd4349a67f2533b078dbc524689d15dba0f4659"
|
||||
|
||||
[[projects]]
|
||||
name = "github.com/boltdb/bolt"
|
||||
packages = ["."]
|
||||
revision = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"
|
||||
version = "v1.3.1"
|
||||
|
||||
[[projects]]
|
||||
name = "github.com/bouk/httprouter"
|
||||
packages = ["."]
|
||||
|
@ -847,6 +841,6 @@
|
|||
[solve-meta]
|
||||
analyzer-name = "dep"
|
||||
analyzer-version = 1
|
||||
inputs-digest = "71484856c934c966b4322dfb4c502a190b6ac0538a67d37f616cbe0010eaa5e4"
|
||||
inputs-digest = "b9db764d51c0ab5a91f4bedf6befa4ca7d562b9f310441e77dd74dfa1f739d71"
|
||||
solver-name = "gps-cdcl"
|
||||
solver-version = 1
|
||||
|
|
|
@ -3,7 +3,7 @@ package bolt
|
|||
import (
|
||||
"time"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
)
|
||||
|
||||
// SchemaVersionBucket stores ids of completed migrations
|
||||
|
|
|
@ -3,7 +3,7 @@ package bolt
|
|||
import (
|
||||
"context"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"encoding/json"
|
||||
"strconv"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf/v2"
|
||||
)
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"log"
|
||||
"strings"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/gogo/protobuf/proto"
|
||||
)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"path"
|
||||
"time"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/id"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"strconv"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"encoding/json"
|
||||
"strconv"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
platform "github.com/influxdata/platform/chronograf/v2"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package bolt
|
|||
import (
|
||||
"context"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
"github.com/influxdata/platform/chronograf/organizations"
|
||||
|
|
|
@ -3,7 +3,7 @@ package bolt
|
|||
import (
|
||||
"context"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package bolt
|
|||
import (
|
||||
"context"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
"github.com/influxdata/platform/chronograf/roles"
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/boltdb/bolt"
|
||||
bolt "github.com/coreos/bbolt"
|
||||
"github.com/influxdata/platform/chronograf"
|
||||
"github.com/influxdata/platform/chronograf/bolt/internal"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue