17 lines
326 B
Go
17 lines
326 B
Go
// +build !consulent
|
|
|
|
package consul
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/agent/metadata"
|
|
autopilot "github.com/hashicorp/raft-autopilot"
|
|
)
|
|
|
|
func (s *Server) autopilotPromoter() autopilot.Promoter {
|
|
return autopilot.DefaultPromoter()
|
|
}
|
|
|
|
func (_ *Server) autopilotServerExt(_ *metadata.Server) interface{} {
|
|
return nil
|
|
}
|