From 5b32986e51b79990060650e22dbd45dad42ecebf Mon Sep 17 00:00:00 2001 From: rwstauner <142719+rwstauner@users.noreply.github.com> Date: Wed, 9 Apr 2025 23:58:02 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/ruby/ext/grpc/rb_grpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ruby/ext/grpc/rb_grpc.c b/src/ruby/ext/grpc/rb_grpc.c index b47071a4d5122..c75bd1ca43f34 100644 --- a/src/ruby/ext/grpc/rb_grpc.c +++ b/src/ruby/ext/grpc/rb_grpc.c @@ -491,7 +491,8 @@ void Init_grpc_c() { Init_grpc_time_consts(); Init_grpc_compression_options(); // define fork APIs - rb_define_module_function(grpc_rb_mGRPC, "init_threads", grpc_rb_init_threads, 0); + rb_define_module_function(grpc_rb_mGRPC, "init_threads", grpc_rb_init_threads, + 0); rb_define_module_function(grpc_rb_mGRPC, "prefork", grpc_rb_prefork, 0); rb_define_module_function(grpc_rb_mGRPC, "postfork_child", grpc_rb_postfork_child, 0);