From ed9866e9e214f79abccd9a962fd778b75e13708b Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Thu, 15 May 2025 14:17:17 -0700 Subject: [PATCH] retry call stack commits a bit more aggressively --- src/ctrl/ctrl_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctrl/ctrl_core.c b/src/ctrl/ctrl_core.c index 5c866084..be8416f2 100644 --- a/src/ctrl/ctrl_core.c +++ b/src/ctrl/ctrl_core.c @@ -6938,7 +6938,7 @@ ASYNC_WORK_DEF(ctrl_call_stack_build_work) // rjf: found, not committed? -> wait & retry if(found && !committed) { - os_condition_variable_wait_rw_w(stripe->cv, stripe->rw_mutex, os_now_microseconds()+10000); + os_condition_variable_wait_rw_w(stripe->cv, stripe->rw_mutex, os_now_microseconds()+100); } } if(committed)