Просмотр исходного кода

pkg/httputil: simplify RequestCanceler args

Gyu-Ho Lee 9 лет назад
Родитель
Сommit
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