1// +build !enterprise
2
3package vault
4
5import "context"
6
7// sendCurrentFragment is a no-op on OSS
8func (a *ActivityLog) sendCurrentFragment(ctx context.Context) error {
9	return nil
10}
11