From a94d7473b0a7ba6826f0df725facd1da27faf4cb Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Thu, 14 Sep 2023 18:14:24 +0200 Subject: [PATCH] Update internal/netxlite/httpfactory.go --- internal/netxlite/httpfactory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/netxlite/httpfactory.go b/internal/netxlite/httpfactory.go index 84e5544ba6..b39500271f 100644 --- a/internal/netxlite/httpfactory.go +++ b/internal/netxlite/httpfactory.go @@ -88,7 +88,7 @@ func HTTPTransportOptionMaxConnsPerHost(value int) HTTPTransportOption { } // HTTPTransportOptionDisableCompression configures the .DisableCompression field, which -// otherwise uses the default set in github.com/ooni/oohttp, i.e., false. +// otherwise is set to true, so that this code is ready for measuring out of the box. func HTTPTransportOptionDisableCompression(value bool) HTTPTransportOption { return func(txp *oohttp.Transport) { txp.DisableCompression = value