Fix disco chain graph validation for namespaces (#7217)

Previously this happened to be validating only the chains in the default namespace. Now it will validate all chains in all namespaces when the global proxy-defaults is changed.
This commit is contained in:
Matt Keeler 2020-02-05 10:06:27 -05:00 committed by GitHub
parent 3621f7090b
commit 119168203b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ func (s *Store) validateProposedConfigEntryInServiceGraph(
// somehow omit the ones that have a default protocol configured. // somehow omit the ones that have a default protocol configured.
for _, kind := range serviceGraphKinds { for _, kind := range serviceGraphKinds {
_, entries, err := s.configEntriesByKindTxn(tx, nil, kind, entMeta) _, entries, err := s.configEntriesByKindTxn(tx, nil, kind, structs.WildcardEnterpriseMeta())
if err != nil { if err != nil {
return err return err
} }