summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Client/Client/Failover
diff options
context:
space:
mode:
authorTomas Restrepo <tomasr@apache.org>2007-05-10 23:02:46 +0000
committerTomas Restrepo <tomasr@apache.org>2007-05-10 23:02:46 +0000
commitcac9db624b611981e9d8ecf64561fe7ed7e173a6 (patch)
tree62a01b26d41e0ff72fe32807bfb48fd3d3d3032c /qpid/dotnet/Qpid.Client/Client/Failover
parent4477307192b9a5fd46e6f9e91ab4299a1b7abbd3 (diff)
downloadqpid-python-cac9db624b611981e9d8ecf64561fe7ed7e173a6.tar.gz
Merged revisions 537015-537026 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/M2 ........ r537015 | tomasr | 2007-05-10 17:16:49 -0500 (Thu, 10 May 2007) | 1 line QPID-435: Fix HeadersExchangeTest ........ r537019 | tomasr | 2007-05-10 17:25:01 -0500 (Thu, 10 May 2007) | 1 line QPID-441 Fix handling of bounced messages ........ r537026 | tomasr | 2007-05-10 17:46:46 -0500 (Thu, 10 May 2007) | 1 line QPID-398 SSL support for .NET client ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@537031 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Client/Client/Failover')
-rw-r--r--qpid/dotnet/Qpid.Client/Client/Failover/FailoverHandler.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/dotnet/Qpid.Client/Client/Failover/FailoverHandler.cs b/qpid/dotnet/Qpid.Client/Client/Failover/FailoverHandler.cs
index aa79749b41..dbd09da49c 100644
--- a/qpid/dotnet/Qpid.Client/Client/Failover/FailoverHandler.cs
+++ b/qpid/dotnet/Qpid.Client/Client/Failover/FailoverHandler.cs
@@ -97,7 +97,8 @@ namespace Qpid.Client.Failover
// if _host has value then we are performing a redirect.
if (_host != null)
{
- failoverSucceeded = _connection.AttemptReconnection(_host, _port, false);
+ // todo: fix SSL support!
+ failoverSucceeded = _connection.AttemptReconnection(_host, _port, null);
}
else
{