aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/end2end
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-09-01 09:06:11 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-09-05 09:40:17 +0200
commit010ea65be5ac9bbd255df816e8957906f8ad5d4e (patch)
tree029d111aa54e653b63bf4b45f38fbb5c9b25c4a6 /src/ruby/end2end
parente2f845ccd58f346206eca6488bdf2279969dcd5f (diff)
remove calls to optional paramaters so that the test is compatible with ruby versions < 2.1
Diffstat (limited to 'src/ruby/end2end')
-rwxr-xr-xsrc/ruby/end2end/grpc_class_init_client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/end2end/grpc_class_init_client.rb b/src/ruby/end2end/grpc_class_init_client.rb
index b9e3d6054f..c35719a71f 100755
--- a/src/ruby/end2end/grpc_class_init_client.rb
+++ b/src/ruby/end2end/grpc_class_init_client.rb
@@ -41,7 +41,7 @@ def run_gc_stress_test(test_proc)
GC.enable
construct_many(test_proc)
- GC.start(full_mark: true, immediate_sweep: true)
+ GC.start
construct_many(test_proc)
end