diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-27 23:04:41 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-27 23:04:41 +0200 |
commit | fc059e664ccb60a954239805adc8dfbbafd594f5 (patch) | |
tree | 8d11a846d62b6b097fb2b51b33df3d0711e9da34 | |
parent | Fixed ICE-8163 - improved locator tracing (diff) | |
download | ice-fc059e664ccb60a954239805adc8dfbbafd594f5.tar.bz2 ice-fc059e664ccb60a954239805adc8dfbbafd594f5.tar.xz ice-fc059e664ccb60a954239805adc8dfbbafd594f5.zip |
Fix for ICE-8118 - workaround to prevent C# Ice/exceptions test failure
-rw-r--r-- | csharp/test/Ice/exceptions/AllTests.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/csharp/test/Ice/exceptions/AllTests.cs b/csharp/test/Ice/exceptions/AllTests.cs index 80b21c2dd5a..112cdfa470d 100644 --- a/csharp/test/Ice/exceptions/AllTests.cs +++ b/csharp/test/Ice/exceptions/AllTests.cs @@ -455,6 +455,12 @@ public class AllTests : TestCommon.AllTests catch(Ice.ConnectionLostException) { } + catch(Ice.ConnectionTimeoutException) + { + // TODO: WORKAROUND for ICE-8118, it some takes 2 minutes to get the ReceivedAsync completed + // callback when the connection is forcefully closed by the server. It appears to be an issue + // with .NET. + } } catch(Ice.ConnectionRefusedException) { |