this repo has no description
0
fork

Configure Feed

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

bump relay integration test timeout from 3s to 10s (#1072)

Trying to reduce the frequency of flakey test failures in github actions
CI. Suspect this is due to over-utilized test runners.

This should not impact "happy path" (tests passing), but makes working
on the tests a bit annoying. Might be possible to check env vars to see
if the test is running in CI and have a different timeout for that
situation.

authored by

bnewbold and committed by
GitHub
9c19d0c4 67e95825

+1 -1
+1 -1
cmd/relay/testing/consumer.go
··· 27 27 func NewConsumer(host string) *Consumer { 28 28 c := Consumer{ 29 29 Host: host, 30 - Timeout: time.Second * 3, 30 + Timeout: time.Second * 10, 31 31 } 32 32 return &c 33 33 }