You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2016/09/30 20:52:12 UTC

qpid-interop-test git commit: QPIDIT-40: Also added queue name to receiver thread name

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master cd3ab86dc -> 6717f243d


QPIDIT-40: Also added queue name to receiver thread name


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/6717f243
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/6717f243
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/6717f243

Branch: refs/heads/master
Commit: 6717f243d64ffbb59609d86ed5520f0c7f3b26f7
Parents: cd3ab86
Author: Kim van der Riet <kp...@apache.org>
Authored: Fri Sep 30 16:51:48 2016 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Fri Sep 30 16:51:48 2016 -0400

----------------------------------------------------------------------
 src/python/qpid-interop-test/shims.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/6717f243/src/python/qpid-interop-test/shims.py
----------------------------------------------------------------------
diff --git a/src/python/qpid-interop-test/shims.py b/src/python/qpid-interop-test/shims.py
index cdc1f66..9d51872 100644
--- a/src/python/qpid-interop-test/shims.py
+++ b/src/python/qpid-interop-test/shims.py
@@ -121,7 +121,7 @@ class Sender(ShimWorkerThread):
 class Receiver(ShimWorkerThread):
     """Receiver class for multi-threaded receive"""
     def __init__(self, receive_shim_args, broker_addr, queue_name, msg_type, json_test_str):
-        super(Receiver, self).__init__('receiver_thread')
+        super(Receiver, self).__init__('receiver_thread_%s' % queue_name)
         if receive_shim_args is None:
             print 'ERROR: Receiver: receive_shim_args == None'
         self.arg_list.extend(receive_shim_args)


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