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 2018/02/26 22:48:06 UTC

qpid-interop-test git commit: QPIDIT-85: Accidentally checked in with a pair of debug messages still activated. They are now commented out.

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master fb6f8541c -> 601940ab0


QPIDIT-85: Accidentally checked in with a pair of debug messages still activated. They are now commented out.


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/601940ab
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/601940ab
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/601940ab

Branch: refs/heads/master
Commit: 601940ab03939444a433f4d4c63f705fef1d52df
Parents: fb6f854
Author: Kim van der Riet <kv...@localhost.localdomain>
Authored: Mon Feb 26 17:47:37 2018 -0500
Committer: Kim van der Riet <kv...@localhost.localdomain>
Committed: Mon Feb 26 17:47:37 2018 -0500

----------------------------------------------------------------------
 src/python/qpid_interop_test/shims.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/601940ab/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 948c218..0d369bb 100644
--- a/src/python/qpid_interop_test/shims.py
+++ b/src/python/qpid_interop_test/shims.py
@@ -75,13 +75,13 @@ class ShimProcess(subprocess.Popen):
 class Sender(ShimProcess):
     """Sender shim process"""
     def __init__(self, params, python3_flag, proc_name='Sender'):
-        print('\n>>>SNDR>>> %s python3_flag=%s' % (params, python3_flag))
+        #print('\n>>>SNDR>>> %s python3_flag=%s' % (params, python3_flag))
         super(Sender, self).__init__(params, python3_flag, proc_name)
 
 class Receiver(ShimProcess):
     """Receiver shim process"""
     def __init__(self, params, python3_flag, proc_name='Receiver'):
-        print('\n>>>RCVR>>> %s python3_flag=%s' % (params, python3_flag))
+        #print('\n>>>RCVR>>> %s python3_flag=%s' % (params, python3_flag))
         super(Receiver, self).__init__(params, python3_flag, proc_name)
 
 class Shim(object):


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