give ci more tollerance for timeouts

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2023-09-10 10:00:12 +02:00 committed by Kristoffer Dalby
parent 432e975a7f
commit 2434d76ade
5 changed files with 42 additions and 15 deletions

View file

@ -7,7 +7,6 @@ import (
"net/netip"
"os"
"sync"
"time"
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
"github.com/juanfont/headscale/hscontrol/util"
@ -21,7 +20,6 @@ import (
const (
scenarioHashLength = 6
maxWait = 60 * time.Second
)
var (
@ -130,7 +128,7 @@ func NewScenario() (*Scenario, error) {
return nil, fmt.Errorf("could not connect to docker: %w", err)
}
pool.MaxWait = maxWait
pool.MaxWait = dockertestMaxWait()
networkName := fmt.Sprintf("hs-%s", hash)
if overrideNetworkName := os.Getenv("HEADSCALE_TEST_NETWORK_NAME"); overrideNetworkName != "" {