this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

util: increase test HTTP client timeout 200ms -> 1s

Was hitting errors on my laptop with fresh docker-compose test services

+1 -1
+1 -1
util/http.go
··· 60 60 func TestingHTTPClient() *http.Client { 61 61 62 62 client := http.DefaultClient 63 - client.Timeout = 200 * time.Millisecond 63 + client.Timeout = 1 * time.Second 64 64 return client 65 65 }