Revert "Added Stubs to stop breakage of Ent (#28772)" (#29284)

This reverts commit 0923064dff.
This commit is contained in:
divyaac
2025-01-03 14:56:59 -08:00
committed by GitHub
parent f730d31bc6
commit 7f722baf58
2 changed files with 5 additions and 15 deletions

View File

@@ -1,15 +0,0 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
package vault
import "context"
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
// sendGlobalClients is a no-op on CE
func (a *ActivityLog) sendGlobalClients(ctx context.Context) error {
return nil
}

View File

@@ -13,3 +13,8 @@ import (
func (a *ActivityLog) sendCurrentFragment(ctx context.Context) error {
return nil
}
// sendGlobalClients is a no-op on CE
func (a *ActivityLog) sendGlobalClients(ctx context.Context) error {
return nil
}