open-consul/agent/config/segment_oss.go

19 lines
334 B
Go

//go:build !consulent
// +build !consulent
package config
import (
"github.com/hashicorp/consul/agent/structs"
)
func (b *builder) validateSegments(rt RuntimeConfig) error {
if rt.SegmentName != "" {
return structs.ErrSegmentsNotSupported
}
if len(rt.Segments) > 0 {
return structs.ErrSegmentsNotSupported
}
return nil
}