File: 0003-boltdb-bolt-is-not-maintained.-Used-bbolt.patch

package info (click to toggle)
docker-libkv 0.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 352 kB
  • sloc: sh: 85; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 610 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: John Howard <jhoward@microsoft.com>
Date: Tue, 11 Sep 2018 12:42:39 -0700
Subject: boltdb/bolt is not maintained. Used bbolt

Origin: backport, https://github.com/docker/libkv/commit/21faf8e
---
 store/boltdb/boltdb.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/store/boltdb/boltdb.go b/store/boltdb/boltdb.go
index cdfd74f..d62979c 100644
--- a/store/boltdb/boltdb.go
+++ b/store/boltdb/boltdb.go
@@ -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 (