This is an automated email from the ASF dual-hosted git repository. kpvdr pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/qpid-interop-test.git
The following commit(s) were added to refs/heads/main by this push: new 32dda0d WIP: Reversed temporary debug: print shim entry params enabled 32dda0d is described below commit 32dda0d9d14f9a1f42e947b87091c9e342c549e8 Author: Kim van der Riet <kvand...@redhat.com> AuthorDate: Tue Aug 10 08:49:11 2021 -0400 WIP: Reversed temporary debug: print shim entry params enabled --- src/python/qpid_interop_test/qit_shim.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/qpid_interop_test/qit_shim.py b/src/python/qpid_interop_test/qit_shim.py index f27f02c..53b31bc 100644 --- a/src/python/qpid_interop_test/qit_shim.py +++ b/src/python/qpid_interop_test/qit_shim.py @@ -89,13 +89,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: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org