PROTON-838: proton-hawtdispatch cannot connect with SSL Remove one of calls to transport.connecting() as this causes an assert with SslTransport
(cherry picked from commit f8ca35f3e007b99e0a5365e154e067840adcefb0) Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/0fbe80e2 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/0fbe80e2 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/0fbe80e2 Branch: refs/heads/0.9.x Commit: 0fbe80e2f81a1e8a2df55f6221b987391d5dc336 Parents: ea01c01 Author: Bozo Dragojevic <[email protected]> Authored: Fri Mar 13 14:01:35 2015 +0100 Committer: Bozo Dragojevic <[email protected]> Committed: Fri Mar 13 23:09:11 2015 +0100 ---------------------------------------------------------------------- .../org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0fbe80e2/contrib/proton-hawtdispatch/src/main/java/org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java ---------------------------------------------------------------------- diff --git a/contrib/proton-hawtdispatch/src/main/java/org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java b/contrib/proton-hawtdispatch/src/main/java/org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java index 9ea048b..bc3ec2e 100644 --- a/contrib/proton-hawtdispatch/src/main/java/org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java +++ b/contrib/proton-hawtdispatch/src/main/java/org/apache/qpid/proton/hawtdispatch/impl/AmqpTransport.java @@ -167,7 +167,6 @@ public class AmqpTransport extends WatchBase { transport.setSendBufferSize(options.getSendBufferSize()); transport.setTrafficClass(options.getTrafficClass()); transport.setUseLocalHost(options.isUseLocalHost()); - transport.connecting(host, options.getLocalAddress()); transport.setTransportListener(new DefaultTransportListener(){ public void onTransportConnected() { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
