structs: fix caching of ServiceSpecificRequest when ingress=true

The field was not being included in the cache info key. This would result in a DNS request for
web.service.consul returning the same result as web.ingress.consul, when those results should
not be the same.
This commit is contained in:
Daniel Nephin 2020-12-18 12:43:16 -05:00
parent 120c2cef23
commit ef9d44fdfe
3 changed files with 15 additions and 2 deletions

4
.changelog/9436.txt Normal file
View File

@ -0,0 +1,4 @@
```release-note:bug
cache: Fixed a bug where a DNS or API request for an ingress gateway would incorrectly
return a cached result for a service request with the same name, and vice versa.
``

View File

@ -617,6 +617,7 @@ func (r *ServiceSpecificRequest) CacheInfo() cache.RequestInfo {
r.Connect,
r.Filter,
r.EnterpriseMeta,
r.Ingress,
}, nil)
if err == nil {
// If there is an error, we don't set the key. A blank key forces

View File

@ -1542,8 +1542,6 @@ func TestServiceSpecificRequestCacheInfoKey(t *testing.T) {
ignoredFields := map[string]bool{
// TODO: should this filed be included?
"ServiceKind": true,
// TODO: this filed should be included: github.com/hashicorp/consul/pull/9436
"Ingress": true,
}
assertCacheInfoKeyIsComplete(t, &ServiceSpecificRequest{}, ignoredFields)
@ -1715,6 +1713,16 @@ func TestSpecificServiceRequest_CacheInfo(t *testing.T) {
},
wantSame: false,
},
{
name: "with integress=true",
req: ServiceSpecificRequest{
Datacenter: "dc1",
ServiceName: "my-service",
},
mutate: func(req *ServiceSpecificRequest) {
req.Ingress = true
},
},
}
for _, tc := range tests {