1
0
vault-redux/vault/request_forwarding_rpc_util.go

21 lines
486 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
2018-09-18 06:03:00 +03:00
package vault
import (
"context"
)
func (s *forwardedRequestRPCServer) PerformanceStandbyElectionRequest(in *PerfStandbyElectionInput, reqServ RequestForwarding_PerformanceStandbyElectionRequestServer) error {
return nil
}
type ReplicationTokenInfo struct{}
func (c *forwardingClient) PerformanceStandbyElection(ctx context.Context) (*ReplicationTokenInfo, error) {
return nil, nil
}