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

Problem: test send count too high for AppVeyor CI environment
This commit is contained in:
Joe Eli McIlvain 2016-05-12 20:15:08 -07:00
commit 71ba7df781

View File

@ -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);
}