X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e9a3b4476759582e49404a0a1f8e820ad5d97fcd..b7f7154a7232e49b0e8ee5bc41d124ff2d15273c:/lib/controller/handler.go?ds=sidebyside diff --git a/lib/controller/handler.go b/lib/controller/handler.go index 0c31815cba..295dde7ca4 100644 --- a/lib/controller/handler.go +++ b/lib/controller/handler.go @@ -5,6 +5,7 @@ package controller import ( + "context" "database/sql" "errors" "net" @@ -49,6 +50,12 @@ func (h *Handler) ServeHTTP(w http.ResponseWriter, req *http.Request) { req.URL.Path = strings.Replace(req.URL.Path, "//", "/", -1) } } + if h.Cluster.HTTPRequestTimeout > 0 { + ctx, cancel := context.WithDeadline(req.Context(), time.Now().Add(time.Duration(h.Cluster.HTTPRequestTimeout))) + req = req.WithContext(ctx) + defer cancel() + } + h.handlerStack.ServeHTTP(w, req) } @@ -83,8 +90,7 @@ func (h *Handler) setup() { h.insecureClient = &ic h.proxy = &proxy{ - Name: "arvados-controller", - RequestTimeout: time.Duration(h.Cluster.HTTPRequestTimeout), + Name: "arvados-controller", } } @@ -121,14 +127,10 @@ func prepend(next http.Handler, middleware middlewareFunc) http.Handler { }) } -// localClusterRequest sets up a request so it can be proxied to the -// local API server using proxy.Do(). Returns true if a response was -// written, false if not. -func (h *Handler) localClusterRequest(w http.ResponseWriter, req *http.Request, filter ResponseFilter) bool { +func (h *Handler) localClusterRequest(req *http.Request) (*http.Response, error) { urlOut, insecure, err := findRailsAPI(h.Cluster, h.NodeProfile) if err != nil { - httpserver.Error(w, err.Error(), http.StatusInternalServerError) - return true + return nil, err } urlOut = &url.URL{ Scheme: urlOut.Scheme, @@ -141,12 +143,14 @@ func (h *Handler) localClusterRequest(w http.ResponseWriter, req *http.Request, if insecure { client = h.insecureClient } - return h.proxy.Do(w, req, urlOut, client, filter) + return h.proxy.Do(req, urlOut, client) } func (h *Handler) proxyRailsAPI(w http.ResponseWriter, req *http.Request, next http.Handler) { - if !h.localClusterRequest(w, req, nil) && next != nil { - next.ServeHTTP(w, req) + resp, err := h.localClusterRequest(req) + n, err := h.proxy.ForwardResponse(w, resp, err) + if err != nil { + httpserver.Logger(req).WithError(err).WithField("bytesCopied", n).Error("error copying response body") } }