2020-09-25 17:46:38 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
2017-11-29 00:30:07 +00:00
|
|
|
package consul
|
|
|
|
|
2020-01-28 23:50:41 +00:00
|
|
|
import (
|
2020-09-25 17:46:38 +00:00
|
|
|
"github.com/hashicorp/serf/serf"
|
2021-07-22 18:58:08 +00:00
|
|
|
"google.golang.org/grpc"
|
2020-01-28 23:50:41 +00:00
|
|
|
)
|
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (s *Server) removeFailedNodeEnterprise(remove func(*serf.Serf, string) error, node, wanNode string) error {
|
|
|
|
// nothing to do for oss
|
|
|
|
return nil
|
2017-12-20 21:43:38 +00:00
|
|
|
}
|
2021-07-22 18:58:08 +00:00
|
|
|
|
|
|
|
func (s *Server) registerEnterpriseGRPCServices(deps Deps, srv *grpc.Server) {}
|