fix a test failure caused by eagerly killing nc
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Aug 29, 2018 at 16:36 UTC
acfa02359d8550c7dbb85b92dfa8f08b2d7b208b
1 file changed
+1
-1
test/sharness/t0236-cli-api-dns-resolve.sh
+1
-1
@@ -13,7 +13,7 @@ test_init_ipfs
13
test_expect_success "can make http request against dns resolved nc server" '
14
nc -ld 5005 > nc_out &
15
NCPID=$!
16
- go-sleep 0.5s && kill "$NCPID" &
16
+ go-sleep 1s && kill "$NCPID" &
17
ipfs cat /ipfs/Qmabcdef --api /dns4/localhost/tcp/5005 || true
18
'
19