You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2018/05/01 19:05:00 UTC

[1/3] qpid-dispatch git commit: DISPATCH-981: remove print statements from tests

Repository: qpid-dispatch
Updated Branches:
  refs/heads/1.1.x c6fac91d5 -> 4fb04f463


DISPATCH-981: remove print statements from tests


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/2154b2d5
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/2154b2d5
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/2154b2d5

Branch: refs/heads/1.1.x
Commit: 2154b2d53fd53a82359cedd1269cfa21599a6013
Parents: c6fac91
Author: Gordon Sim <gs...@redhat.com>
Authored: Tue May 1 17:29:43 2018 +0100
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Tue May 1 13:52:31 2018 -0400

----------------------------------------------------------------------
 tests/system_tests_link_routes.py | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/2154b2d5/tests/system_tests_link_routes.py
----------------------------------------------------------------------
diff --git a/tests/system_tests_link_routes.py b/tests/system_tests_link_routes.py
index 87fb448..d31d4b7 100644
--- a/tests/system_tests_link_routes.py
+++ b/tests/system_tests_link_routes.py
@@ -1303,21 +1303,17 @@ class MultiLinkSendReceive(MessagingHandler):
             self.receivers[r.link.connection.container] = r
 
     def on_link_remote_open(self, event):
-        print("link opened: %s %s %s" % (event.link.source.address, event.link.target.address, event.connection.container))
 
     def on_sendable(self, event):
-        print("sendable: %s %s" % (event.link.target.address, event.connection.container))
         self.senders[event.connection.container].send(self.name, self.message)
 
     def on_message(self, event):
-        print("message received: %s %s" % (event.link.source.address, event.connection.container))
         if self.message != event.message.body:
             error = "Incorrect message. Got %s, expected %s" % (event.message.body, self.message.body)
         self.receivers[event.connection.container].on_message()
         self.stop_if_all_done()
 
     def on_accepted(self, event):
-        print("accepted: %s %s" % (event.link.target.address, event.connection.container))
         self.senders[event.connection.container].on_accepted()
         self.stop_if_all_done()
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[3/3] qpid-dispatch git commit: DISPATCH-986 - Coverity fixes. This closes #297

Posted by gm...@apache.org.
DISPATCH-986 - Coverity fixes. This closes #297


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/4fb04f46
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/4fb04f46
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/4fb04f46

Branch: refs/heads/1.1.x
Commit: 4fb04f463c6b0f9e1b8b0d9b1b9f2dfa87df12b7
Parents: 8dac02a
Author: Ganesh Murthy <gm...@redhat.com>
Authored: Tue May 1 14:57:56 2018 -0400
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Tue May 1 14:59:52 2018 -0400

----------------------------------------------------------------------
 src/connection_manager.c | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/4fb04f46/src/connection_manager.c
----------------------------------------------------------------------
diff --git a/src/connection_manager.c b/src/connection_manager.c
index b846c98..628379f 100644
--- a/src/connection_manager.c
+++ b/src/connection_manager.c
@@ -595,6 +595,9 @@ qd_config_sasl_plugin_t *qd_dispatch_configure_sasl_plugin(qd_dispatch_t *qd, qd
         }
     }
 
+    free(auth_host);
+    free(auth_port);
+
     if (!sasl_plugin->auth_service) {
         sasl_plugin->auth_service               = qd_entity_opt_string(entity, "authService", 0); CHECK();
         qd_log(cm->log_source, QD_LOG_WARNING, "Attribute authService of entity authServicePlugin has been deprecated. Use host and port instead.");


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[2/3] qpid-dispatch git commit: DISPATCH-981 - Removed empty function on_link_remote_open

Posted by gm...@apache.org.
DISPATCH-981 - Removed empty function on_link_remote_open


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/8dac02a2
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/8dac02a2
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/8dac02a2

Branch: refs/heads/1.1.x
Commit: 8dac02a25960ffcad51b15ddf144abae5e853e9e
Parents: 2154b2d
Author: Ganesh Murthy <gm...@redhat.com>
Authored: Tue May 1 13:31:55 2018 -0400
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Tue May 1 13:52:52 2018 -0400

----------------------------------------------------------------------
 tests/system_tests_link_routes.py | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/8dac02a2/tests/system_tests_link_routes.py
----------------------------------------------------------------------
diff --git a/tests/system_tests_link_routes.py b/tests/system_tests_link_routes.py
index d31d4b7..1f95e4f 100644
--- a/tests/system_tests_link_routes.py
+++ b/tests/system_tests_link_routes.py
@@ -1302,8 +1302,6 @@ class MultiLinkSendReceive(MessagingHandler):
             r = self.RecvState(event.container.create_receiver(u, name=self.name))
             self.receivers[r.link.connection.container] = r
 
-    def on_link_remote_open(self, event):
-
     def on_sendable(self, event):
         self.senders[event.connection.container].send(self.name, self.message)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org