Skip to content

Commit 9c204b4

Browse files
committed
ensure reuseaddr in listen is tested
1 parent a9959f1 commit 9c204b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/srvr.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ function run_httprpcsrvr(fmt, tport, async=false)
5050
run_srvr(fmt, tport, true, true)
5151
apiclnt = APIInvoker(ZMQTransport(SRVR_ADDR, REQ, false), fmt)
5252
if async
53-
@async run_http(apiclnt, 8888, test_preproc)
53+
@async run_http(apiclnt, 8888, test_preproc; reuseaddr=true)
5454
else
55-
run_http(apiclnt, 8888, test_preproc)
55+
run_http(apiclnt, 8888, test_preproc; reuseaddr=true)
5656
end
5757
end
5858

0 commit comments

Comments
 (0)