Browse Source

Fix STOMP protocol mismatch.

Stefano Cossu 6 năm trước cách đây
mục cha
commit
75950d037c
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lakesuperior/messaging/handlers.py

+ 2 - 2
lakesuperior/messaging/handlers.py

@@ -14,9 +14,9 @@ class StompHandler(logging.Handler):
     def __init__(self, conf):
         self.conf = conf
         if self.conf['protocol'] == '11':
-            conn_cls = stomp.Connection12
-        elif self.conf['protocol'] == '12':
             conn_cls = stomp.Connection11
+        elif self.conf['protocol'] == '12':
+            conn_cls = stomp.Connection12
         else:
             conn_cls = stomp.Connection10