Commit cf281ed5 authored by Geoff Simmons's avatar Geoff Simmons

Minor fix for spec.DeepHash().

In case Pod names ever change without changing endpoint addresses.
parent 98406fca
......@@ -132,6 +132,7 @@ func (spec Spec) DeepHash() []byte {
}
sort.Strings(epNames)
for _, epName := range epNames {
hash.Write([]byte(epName))
spec.Services[svc].Endpoints[epName].hash(hash)
}
}
......
Markdown is supported
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