From 9333b35f182ee01935ea2593190f16692a98d6fe Mon Sep 17 00:00:00 2001 From: Tanzeeb Khalili Date: Wed, 15 Aug 2018 10:22:17 -0400 Subject: [PATCH] Re-remove timeout hacks Was originally fixed in #1733, but accidentally reverted in #1689 --- pkg/activator/handler/handler.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/activator/handler/handler.go b/pkg/activator/handler/handler.go index d79464f0976b..b433c3d073e0 100644 --- a/pkg/activator/handler/handler.go +++ b/pkg/activator/handler/handler.go @@ -55,9 +55,5 @@ func (a *ActivationHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { proxy := httputil.NewSingleHostReverseProxy(target) proxy.Transport = a.Transport - // TODO: Clear the host to avoid 404's. - // https://github.com/knative/serving/issues/964 - r.Host = "" - proxy.ServeHTTP(w, r) }