Skip to content

Commit eba046b

Browse files
committed
bump up CQ polling interval while we're here
1 parent b5478b9 commit eba046b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ruby/ext/grpc/rb_completion_queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ typedef struct next_call_stack {
4040
/* Calls grpc_completion_queue_pluck without holding the ruby GIL */
4141
static void* grpc_rb_completion_queue_pluck_no_gil(void* param) {
4242
next_call_stack* const next_call = (next_call_stack*)param;
43-
gpr_timespec increment = gpr_time_from_millis(20, GPR_TIMESPAN);
43+
gpr_timespec increment = gpr_time_from_millis(200, GPR_TIMESPAN);
4444
gpr_timespec deadline;
4545
do {
4646
deadline = gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), increment);

0 commit comments

Comments
 (0)