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/07 13:08:10 UTC

qpid-interop-test git commit: QPIDIT-22: Minor fix for Artemis, which adds message properties not part of the origianl message - pyhton client did not handle this.

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master 8876c8fcb -> 038afc553


QPIDIT-22: Minor fix for Artemis, which adds message properties not part of the origianl message - pyhton client did not handle this.


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

Branch: refs/heads/master
Commit: 038afc553794eefbd1a4800e33dfeef015e8ecff
Parents: 8876c8f
Author: Kim van der Riet <kp...@apache.org>
Authored: Wed Sep 7 09:07:46 2016 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Wed Sep 7 09:07:46 2016 -0400

----------------------------------------------------------------------
 shims/qpid-proton-python/src/JmsReceiverShim.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/038afc55/shims/qpid-proton-python/src/JmsReceiverShim.py
----------------------------------------------------------------------
diff --git a/shims/qpid-proton-python/src/JmsReceiverShim.py b/shims/qpid-proton-python/src/JmsReceiverShim.py
index 9b2846c..f068659 100755
--- a/shims/qpid-proton-python/src/JmsReceiverShim.py
+++ b/shims/qpid-proton-python/src/JmsReceiverShim.py
@@ -295,8 +295,7 @@ class JmsReceiverShim(MessagingHandler):
                 elif (jms_property_type == 'string'):
                     self.jms_property_map[jms_property_name] = {'string': str(value)}
                 else:
-                    raise InteropTestError('JmsRecieverShim._process_jms_properties(): Unknown JMS property type "%s"' %
-                                           jms_property_type)
+                    pass # Ignore any other properties, brokers can add them and we don't know what they may be
 
 
 # --- main ---


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