We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5478b9 commit eba046bCopy full SHA for eba046b
1 file changed
src/ruby/ext/grpc/rb_completion_queue.c
@@ -40,7 +40,7 @@ typedef struct next_call_stack {
40
/* Calls grpc_completion_queue_pluck without holding the ruby GIL */
41
static void* grpc_rb_completion_queue_pluck_no_gil(void* param) {
42
next_call_stack* const next_call = (next_call_stack*)param;
43
- gpr_timespec increment = gpr_time_from_millis(20, GPR_TIMESPAN);
+ gpr_timespec increment = gpr_time_from_millis(200, GPR_TIMESPAN);
44
gpr_timespec deadline;
45
do {
46
deadline = gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), increment);
0 commit comments