diff options
author | Jose <jose@zeroc.com> | 2020-12-16 16:41:07 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2020-12-16 16:41:40 +0100 |
commit | db825e38645a3ceacb10287cec5776bb38bd1bf0 (patch) | |
tree | eba5e6a0f04f2c90978694f6c876552e4258046e | |
parent | Fxcop warnings (#1201) (diff) | |
download | ice-db825e38645a3ceacb10287cec5776bb38bd1bf0.tar.bz2 ice-db825e38645a3ceacb10287cec5776bb38bd1bf0.tar.xz ice-db825e38645a3ceacb10287cec5776bb38bd1bf0.zip |
Fix bogus call to holdAdapter in ruby timeout test
-rw-r--r-- | ruby/test/Ice/timeout/AllTests.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/test/Ice/timeout/AllTests.rb b/ruby/test/Ice/timeout/AllTests.rb index 2bc05c46c2f..a855be49168 100644 --- a/ruby/test/Ice/timeout/AllTests.rb +++ b/ruby/test/Ice/timeout/AllTests.rb @@ -25,7 +25,7 @@ def allTests(helper, communicator) rescue # Ensure the adapter is not in the holding state when an unexpected exception occurs to prevent # the test from hanging on exit in case a connection which disables timeouts is still opened. - controller.holdAdapter() + controller.resumeAdapter() raise end end |