From 77973d9bcc4a17a2e0a154916b63f565fa2e0752 Mon Sep 17 00:00:00 2001 From: Valerij Maljulin Date: Nov 04 2020 11:10:21 +0000 Subject: Remove start call for the stomp.py connection as it is deprecated Function start() was an empty call since 2017 according to stomp.py git history JIRA: RHELWF-2180 --- diff --git a/resultsdb/messaging.py b/resultsdb/messaging.py index ff239ef..2ae7a43 100644 --- a/resultsdb/messaging.py +++ b/resultsdb/messaging.py @@ -191,7 +191,6 @@ class StompPlugin(MessagingPlugin): kwargs['message'] = kwargs.pop('body') # On EL7, different sig. conn = self.stomp.Connection(**self.connection) - conn.start() conn.connect() try: conn.send(**kwargs)