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 2021/08/10 12:27:41 UTC

[qpid-interop-test] branch main updated: WIP: Temporary debug: print shim entry params enabled

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 936de31  WIP: Temporary debug: print shim entry params enabled
936de31 is described below

commit 936de31ccf909dbf642966bd3d5ca70dfcbad4c3
Author: Kim van der Riet <kv...@redhat.com>
AuthorDate: Tue Aug 10 08:26:17 2021 -0400

    WIP: 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 53b31bc..f27f02c 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-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org