2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-22 18:38:19 +00:00
2023-10-10 10:58:06 -04:00

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
}