mirror of https://github.com/hashicorp/consul
21 lines
384 B
Go
21 lines
384 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
//go: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
|
||
|
}
|