We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff5e07c commit 4ef1b60Copy full SHA for 4ef1b60
pkg/server/tunnel.go
@@ -77,6 +77,7 @@ func (t *Tunnel) ServeHTTP(w http.ResponseWriter, r *http.Request) {
77
backend, err := t.Server.BackendManager.Backend()
78
if err != nil {
79
http.Error(w, fmt.Sprintf("currently no tunnels available: %v", err), http.StatusInternalServerError)
80
+ return
81
}
82
if err := backend.Send(dialRequest); err != nil {
83
klog.Errorf("failed to tunnel dial request %v", err)
0 commit comments