瀏覽代碼

pkg/httputil: simplify RequestCanceler args

Gyu-Ho Lee 9 年之前
父節點
當前提交
ae4b4109b2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/httputil/httputil.go

+ 1 - 1
pkg/httputil/httputil.go

@@ -13,7 +13,7 @@ import (
 	"net/http"
 )
 
-func RequestCanceler(rt http.RoundTripper, req *http.Request) func() {
+func RequestCanceler(req *http.Request) func() {
 	ch := make(chan struct{})
 	req.Cancel = ch