Browse Source

Address PR comments.

pull/14986/head
Derek Menteer 2 years ago committed by Derek Menteer
parent
commit
4e140c98bc
  1. 4
      agent/rpc/peering/service.go

4
agent/rpc/peering/service.go

@ -486,7 +486,9 @@ func (s *Server) validatePeeringLocality(token *structs.PeeringToken) error {
return fmt.Errorf("failed to fetch TLS materials: %w", err)
}
if serverName == token.ServerName {
return fmt.Errorf("cannot create a peering within the same cluster %q", serverName)
return fmt.Errorf(
"cannot create a peering within the same cluster %q. Refer to the `exported-services` documentation if you want to export between partitions without peering",
serverName)
}
return nil
}

Loading…
Cancel
Save