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
8 changes: 6 additions & 2 deletions apimon/ansible/callback/apimon_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,12 @@ def is_task_interesting(self, task):
or task.action.startswith('openstack')
# This is bad, but what else can we do?
or task.action[:3] in ['rds', 'cce']
or task.action in ('script', 'command',
'wait_for_connection', 'wait_for')
or task.action in (
'script', 'ansible.builtin.script',
'command', 'ansible.builtint.command',
'wait_for_connection',
'ansible.builtin.wait_for_connection',
'wait_for', 'ansible.builtin.wait_for')
)
)

Expand Down
7 changes: 7 additions & 0 deletions releasenotes/notes/fix-wait-for-ed7d66655797d41e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
features:
- |
Rebase to OTCE 0.22 to make use of the repaired CCE project cleanup
fixes:
- |
For selected ansible modules (in the is_interesting comarison) use also FQCN.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ansible==4.2.0
ansible==4.4.0
gear
otcextensions==0.19.0
otcextensions==0.22.0
openstacksdk
GitPython
statsd
Expand Down