Browse Source

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.
pull/9436/head
Daniel Nephin 4 years ago
parent
commit
29ce5ec575
  1. 4
      .changelog/9436.txt
  2. 1
      agent/structs/structs.go
  3. 12
      agent/structs/structs_test.go

4
.changelog/9436.txt

@ -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.
``

1
agent/structs/structs.go

@ -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

12
agent/structs/structs_test.go

@ -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 {

Loading…
Cancel
Save