Skip to content

Commit ebc7cdc

Browse files
authored
Merge pull request #5782 from ipfs/feat/http-context
Switch to using request.Context()
2 parents 31099e8 + da4674f commit ebc7cdc

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

core/corehttp/gateway_handler.go

+1-13
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,11 @@ func (i *gatewayHandler) newDagFromReader(r io.Reader) (ipld.Node, error) {
6464
chunker.DefaultSplitter(r))
6565
}
6666

67-
// TODO(btc): break this apart into separate handlers using a more expressive muxer
6867
func (i *gatewayHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
69-
ctx, cancel := context.WithTimeout(i.node.Context(), time.Hour)
7068
// the hour is a hard fallback, we don't expect it to happen, but just in case
69+
ctx, cancel := context.WithTimeout(r.Context(), time.Hour)
7170
defer cancel()
7271

73-
if cn, ok := w.(http.CloseNotifier); ok {
74-
clientGone := cn.CloseNotify()
75-
go func() {
76-
select {
77-
case <-clientGone:
78-
case <-ctx.Done():
79-
}
80-
cancel()
81-
}()
82-
}
83-
8472
defer func() {
8573
if r := recover(); r != nil {
8674
log.Error("A panic occurred in the gateway handler!")

0 commit comments

Comments
 (0)