Procházet zdrojové kódy

Slightly more robust HTTP stress test

Jakob Borg před 11 roky
rodič
revize
7d1c720b84
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. 4 1
      test/httpstress_test.go

+ 4 - 1
test/httpstress_test.go

@@ -51,7 +51,10 @@ func TestStressHTTP(t *testing.T) {
 
 	tc := &tls.Config{InsecureSkipVerify: true}
 	tr := &http.Transport{
-		TLSClientConfig: tc,
+		TLSClientConfig:       tc,
+		DisableKeepAlives:     true,
+		ResponseHeaderTimeout: time.Second,
+		TLSHandshakeTimeout:   time.Second,
 	}
 	client := &http.Client{
 		Transport: tr,