vault/builtin/logical/pki/cmpv2_util_oss.go
Rachel Culpepper 978b3aee52
add ce changes and documentation for tidying cmpv2 nonce store (#28362)
* add ce changes and documentation for tidying cmpv2 nonce store

* add build tag

* fix test failures

* fix backend test
2024-09-12 11:32:51 -05:00

17 lines
274 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
package pki
import (
"context"
"github.com/hashicorp/vault/sdk/logical"
)
func (b *backend) doTidyCMPV2NonceStore(_ context.Context, _ logical.Storage) error {
return nil
}