diff options
author | ncteisen <ncteisen@gmail.com> | 2018-06-13 15:06:07 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2018-06-13 15:06:07 -0700 |
commit | 19ac7c0baf298be51c0dbfa7d5bcd1f45eec7c78 (patch) | |
tree | f0a8bd5fcceccbd4ff1835d3a2b9a611a0b64e2d | |
parent | cb5471c2eead73a90dca739fbfbfb8819a3ec31b (diff) |
Fix ruby test by backing off on the concurrency
-rwxr-xr-x | src/ruby/end2end/multiple_killed_watching_threads_driver.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ruby/end2end/multiple_killed_watching_threads_driver.rb b/src/ruby/end2end/multiple_killed_watching_threads_driver.rb index dbfdf61599..7b39f5a347 100755 --- a/src/ruby/end2end/multiple_killed_watching_threads_driver.rb +++ b/src/ruby/end2end/multiple_killed_watching_threads_driver.rb @@ -58,10 +58,6 @@ def main run_multiple_killed_watches(10, 0.1) STDERR.puts '1000 iterations, sleep 0.001 before killing thread' run_multiple_killed_watches(1000, 0.001) - STDERR.puts '10000 iterations, sleep 0.00001 before killing thread' - run_multiple_killed_watches(10_000, 0.00001) - STDERR.puts '20000 iterations, sleep 0.000001 before killing thread' - run_multiple_killed_watches(20_000, 0.000001) end main |