TUN-985: Don't display tunnel ID if it's empty string
This commit is contained in:
parent
5b7e587c8b
commit
83a7710e62
|
@ -339,7 +339,9 @@ func RegisterTunnel(ctx context.Context, muxer *h2mux.Muxer, config *TunnelConfi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if registration.TunnelID != "" {
|
||||||
config.Logger.Info("Tunnel ID: " + registration.TunnelID)
|
config.Logger.Info("Tunnel ID: " + registration.TunnelID)
|
||||||
|
}
|
||||||
config.Logger.Infof("Route propagating, it may take up to 1 minute for your new route to become functional")
|
config.Logger.Infof("Route propagating, it may take up to 1 minute for your new route to become functional")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue