Commit 71ba7df7 authored by Joe Eli McIlvain's avatar Joe Eli McIlvain

Merge pull request #1987 from hitstergtd/x-reduce-cliserv-sends

Problem: test send count too high for AppVeyor CI environment
parents 9e872d02 e82e4ea1
......@@ -33,7 +33,7 @@
void client_thread (void *client)
{
char data = 0;
for (int count = 0; count < 100000; count++) {
for (int count = 0; count < 15000; count++) {
int rc = zmq_send (client, &data, 1, 0);
assert (rc == 1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment