[lxc-devel] [lxd/master] use the coreos fork of boltdb

joewholden on Github lxc-bot at linuxcontainers.org
Sun May 17 15:11:25 UTC 2020


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 699 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20200517/663b3f0b/attachment.bin>
-------------- next part --------------
From e6212e714924b36d078e0cc84da0482bdd163802 Mon Sep 17 00:00:00 2001
From: Joe Holden <jwh at zorins.us>
Date: Sun, 17 May 2020 14:39:44 +0000
Subject: [PATCH] use the coreos fork of boltdb since the original is
 archived/abandoned

---
 lxd/cluster/migrate.go   | 2 +-
 lxd/cluster/raft/bolt.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lxd/cluster/migrate.go b/lxd/cluster/migrate.go
index 47ecd931b8..b52925c8e0 100644
--- a/lxd/cluster/migrate.go
+++ b/lxd/cluster/migrate.go
@@ -8,7 +8,7 @@ import (
 	"path/filepath"
 	"strconv"
 
-	"github.com/boltdb/bolt"
+	bolt "go.etcd.io/bbolt"
 	"github.com/hashicorp/go-msgpack/codec"
 	"github.com/lxc/lxd/lxd/cluster/raft"
 	"github.com/lxc/lxd/shared"
diff --git a/lxd/cluster/raft/bolt.go b/lxd/cluster/raft/bolt.go
index b6176cd415..72926aff1b 100644
--- a/lxd/cluster/raft/bolt.go
+++ b/lxd/cluster/raft/bolt.go
@@ -5,7 +5,7 @@ import (
 	"encoding/binary"
 	"errors"
 
-	"github.com/boltdb/bolt"
+	bolt "go.etcd.io/bbolt"
 	"github.com/hashicorp/go-msgpack/codec"
 )
 


More information about the lxc-devel mailing list