add debug info and fix spelling

This commit is contained in:
Tony Li 2017-02-21 18:19:29 -05:00
parent 4c0a616f5c
commit 62fcc400b8

View file

@ -600,8 +600,9 @@ func (l *L7) edgeHop() error {
return err return err
} }
} }
// Defer promoting an emphemral to a static IP till it's really needed. // Defer promoting an ephemeral to a static IP until it's really needed.
if l.runtimeInfo.AllowHTTP && (l.runtimeInfo.TLS != nil || l.runtimeInfo.TLSName != "") { if l.runtimeInfo.AllowHTTP && (l.runtimeInfo.TLS != nil || l.runtimeInfo.TLSName != "") {
glog.V(3).Infof("checking static ip for %v", l.Name)
if err := l.checkStaticIP(); err != nil { if err := l.checkStaticIP(); err != nil {
return err return err
} }