Explorar el Código

Fix STOMP protocol mismatch.

Stefano Cossu hace 6 años
padre
commit
75950d037c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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