From fdef0a2dd082fcf8d07161c14ac32ca3e5463ed4 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Wed, 5 Jan 2022 07:15:22 +0000 Subject: [PATCH] threadpool: adjust sync wait budget up --- lib/misc/threadpool/threadpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/misc/threadpool/threadpool.c b/lib/misc/threadpool/threadpool.c index 40df5ba40..40d0db04d 100644 --- a/lib/misc/threadpool/threadpool.c +++ b/lib/misc/threadpool/threadpool.c @@ -395,7 +395,7 @@ lws_threadpool_worker_sync(struct lws_pool *pool, enum lws_threadpool_task_status temp; struct timespec abstime; struct lws *wsi; - int tries = 15; + int tries = 100; /* block until writable acknowledges */ lwsl_debug("%s: %p: LWS_TP_RETURN_SYNC in\n", __func__, task);