Repository: qpid-dispatch Updated Branches: refs/heads/master 89895c52e -> 5e6b2e65b
NO-JIRA - Increase the timeout to 10 seconds on the waypoint tests to give it some extra time to complete Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/5e6b2e65 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/5e6b2e65 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/5e6b2e65 Branch: refs/heads/master Commit: 5e6b2e65b2ea9614d7619711961d38aceefb49d4 Parents: 89895c5 Author: Ganesh Murthy <[email protected]> Authored: Mon Jan 16 16:54:36 2017 -0500 Committer: Ganesh Murthy <[email protected]> Committed: Mon Jan 16 16:54:36 2017 -0500 ---------------------------------------------------------------------- tests/system_tests_multi_tenancy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/5e6b2e65/tests/system_tests_multi_tenancy.py ---------------------------------------------------------------------- diff --git a/tests/system_tests_multi_tenancy.py b/tests/system_tests_multi_tenancy.py index cd34fd0..309bedf 100644 --- a/tests/system_tests_multi_tenancy.py +++ b/tests/system_tests_multi_tenancy.py @@ -500,6 +500,7 @@ class MessageTransferTest(MessagingHandler): while self.sender.credit > 0 and self.n_sent < self.count: self.n_sent += 1 m = Message(body="Message %d of %d" % (self.n_sent, self.count)) + if self.anonymous: m.address = self.sender_address self.sender.send(m) @@ -699,7 +700,7 @@ class WaypointTest(MessagingHandler): self.waypoint_sender.send(m) def on_start(self, event): - self.timer = event.reactor.schedule(5, Timeout(self)) + self.timer = event.reactor.schedule(10, Timeout(self)) self.first_conn = event.container.connect(self.first_host) self.second_conn = event.container.connect(self.second_host) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
