Commit c53813d1 authored by Geoff Simmons's avatar Geoff Simmons

Syntax bugfix.

parent c5a2fefe
......@@ -431,10 +431,10 @@ func (ingc *IngressController) addOrUpdateIng(task Task,
}
ingc.log.Debugf("Check if Ingress is loaded: key=%s uuid=%s hash=%0x",
key, string(ing.UID), vclSpec.Canonical.DeepHash())
key, string(ing.UID), vclSpec.Canonical().DeepHash())
if ingc.hasIngress(&ing, vclSpec) {
ingc.log.Infof("Ingress %s uid=%s hash=%0x already loaded", key,
ing.UID, vclSpec.Canonical.DeepHash())
ing.UID, vclSpec.Canonical().DeepHash())
return
}
ingc.log.Debugf("Update Ingress key=%s uuid=%s: %+v", key,
......
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