Skip to content
Snippets Groups Projects
Commit 2e19f3fd authored by R.B. Boyer's avatar R.B. Boyer
Browse files

align var names

parent 27c6ed9e
No related merge requests found
...@@ -13,7 +13,7 @@ var ( ...@@ -13,7 +13,7 @@ var (
// the zero'th point release of the last element of proxysupport.EnvoyVersions. // the zero'th point release of the last element of proxysupport.EnvoyVersions.
minSupportedVersion = version.Must(version.NewVersion("1.17.0")) minSupportedVersion = version.Must(version.NewVersion("1.17.0"))
minVersionWithLDSAndCDSProperlyUsingWildcardsWithIncrementalXDS = version.Must(version.NewVersion("1.19.0")) minVersionToForceLDSandCDSToAlwaysUseWildcardsOnReconnect = version.Must(version.NewVersion("1.19.0"))
specificUnsupportedVersions = []unsupportedVersion{} specificUnsupportedVersions = []unsupportedVersion{}
) )
...@@ -75,7 +75,7 @@ func determineSupportedProxyFeaturesFromVersion(version *version.Version) (suppo ...@@ -75,7 +75,7 @@ func determineSupportedProxyFeaturesFromVersion(version *version.Version) (suppo
sf := supportedProxyFeatures{} sf := supportedProxyFeatures{}
if version.LessThan(minVersionWithLDSAndCDSProperlyUsingWildcardsWithIncrementalXDS) { if version.LessThan(minVersionToForceLDSandCDSToAlwaysUseWildcardsOnReconnect) {
sf.ForceLDSandCDSToAlwaysUseWildcardsOnReconnect = true sf.ForceLDSandCDSToAlwaysUseWildcardsOnReconnect = true
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment