Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ Fixed
NOTE: This issue only affected installations using Python 3. (bug fix) #4832 #4834

Reported by @alexku7.
* Fix the amqp connection setup for WorkflowExecutionHandler to pass SSL params. (bug fix) #4845

Contributed by Tatsuma Matsuki (@mtatsuma)

3.1.0 - June 27, 2019
---------------------
Expand Down
4 changes: 1 addition & 3 deletions st2actions/st2actions/workflows/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

from __future__ import absolute_import

import kombu

from orquesta import statuses

from st2common.constants import action as ac_const
Expand Down Expand Up @@ -179,5 +177,5 @@ def handle_action_execution(self, ac_ex_db):


def get_engine():
with kombu.Connection(txpt_utils.get_messaging_urls()) as conn:
with txpt_utils.get_connection() as conn:
return WorkflowExecutionHandler(conn, WORKFLOW_EXECUTION_QUEUES)