From f8244ffe6611d5c2a5a3e768ece09ca8fc17dbbf Mon Sep 17 00:00:00 2001 From: Carl Jackson Date: Sat, 15 Mar 2014 13:23:05 -0700 Subject: [PATCH] Reference graceful shutdown golang issue Apparently stdlib support will be in Go 1.3. Yay! --- graceful/graceful.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graceful/graceful.go b/graceful/graceful.go index 121e307..0d51726 100644 --- a/graceful/graceful.go +++ b/graceful/graceful.go @@ -11,7 +11,7 @@ by carefully reading the sequence of function calls net/http happened to use as of this writing and finding enough surface area with which to add appropriate behavior. There's a very good chance that this package will cease to work in future versions of Go, but with any luck the standard library will add support -of its own by then. +of its own by then (https://code.google.com/p/go/issues/detail?id=4674). If you're interested in figuring out how this package works, we suggest you read the documentation for WrapConn() and net.go.