mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
8539565046
Switch to using the external autopilot module
13 lines
237 B
Go
13 lines
237 B
Go
// +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
|
|
}
|