Use our fork of bbolt to improve freelist performance (#24010)

This commit is contained in:
Nick Cabatoff
2023-11-21 10:08:18 -05:00
committed by GitHub
parent c0014c9640
commit 1bf366ccdc
9 changed files with 91 additions and 9 deletions

View File

@@ -12,10 +12,10 @@ import (
"time"
"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
"github.com/hashicorp/go-hclog"
wrapping "github.com/hashicorp/go-kms-wrapping/v2"
"github.com/hashicorp/go-multierror"
bolt "go.etcd.io/bbolt"
)
const (

View File

@@ -14,11 +14,11 @@ import (
"time"
"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/command/agentproxyshared/cache/keymanager"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
bolt "go.etcd.io/bbolt"
)
func getTestKeyManager(t *testing.T) keymanager.KeyManager {