From 35d342b4fa749f7a3d45527580d3aa0c2a42e1f4 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 2 May 2016 16:07:18 +0000 Subject: [PATCH] net/http: remove some TODOs Change-Id: Iaf200ba9a308bc8f511eec4a70dbeb014bf5fdc3 Reviewed-on: https://go-review.googlesource.com/22690 Reviewed-by: Andrew Gerrand --- src/net/http/transport.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/net/http/transport.go b/src/net/http/transport.go index c8bb34fa486..032d8af4a1b 100644 --- a/src/net/http/transport.go +++ b/src/net/http/transport.go @@ -181,8 +181,6 @@ type Transport struct { nextProtoOnce sync.Once h2transport *http2Transport // non-nil if http2 wired up - // TODO: MaxIdleConns tunable for global max cached connections (Issue 15461) - // TODO: tunable on timeout on cached connections (and advertise with Keep-Alive header?) // TODO: tunable on max per-host TCP dials in flight (Issue 13957) }