2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-01-05 18:02:03 +00:00
|
|
|
//go:build !enterprise
|
2020-10-29 23:47:34 +00:00
|
|
|
|
|
|
|
package vault
|
|
|
|
|
2023-04-21 19:29:37 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
)
|
2020-10-29 23:47:34 +00:00
|
|
|
|
|
|
|
// sendCurrentFragment is a no-op on OSS
|
|
|
|
func (a *ActivityLog) sendCurrentFragment(ctx context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
2023-03-20 14:51:35 +00:00
|
|
|
|
|
|
|
// CensusReport is a no-op on OSS
|
2023-04-21 19:29:37 +00:00
|
|
|
func (a *ActivityLog) CensusReport(context.Context, CensusReporter, time.Time) {}
|