diff --git a/private/testplanet/satellite.go b/private/testplanet/satellite.go index d980b7fb2..041c69a82 100644 --- a/private/testplanet/satellite.go +++ b/private/testplanet/satellite.go @@ -464,6 +464,10 @@ func (planet *Planet) newSatellite(ctx context.Context, prefix string, index int config.Console.StaticDir = filepath.Join(developmentRoot, "web/satellite") config.Payments.Storjscan.DisableLoop = true + if os.Getenv("STORJ_TEST_DISABLEQUIC") != "" { + config.Server.DisableQUIC = true + } + if planet.config.Reconfigure.Satellite != nil { planet.config.Reconfigure.Satellite(log, index, &config) } diff --git a/private/testplanet/storagenode.go b/private/testplanet/storagenode.go index c2b74bce0..cdc1ded11 100644 --- a/private/testplanet/storagenode.go +++ b/private/testplanet/storagenode.go @@ -217,6 +217,10 @@ func (planet *Planet) newStorageNode(ctx context.Context, prefix string, index, }, } + if os.Getenv("STORJ_TEST_DISABLEQUIC") != "" { + config.Server.DisableQUIC = true + } + // enable the lazy filewalker config.Pieces.EnableLazyFilewalker = true