open-consul/agent/consul/server_oss.go

13 lines
237 B
Go
Raw Normal View History

// +build !consulent
package consul
import (
"github.com/hashicorp/serf/serf"
)
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
}