Fixes task name in notify module to the actual task name

An OVS-DPDK task had part of its name capitalized,
presumably due to the newly added ansible linter,
but this change was not reflected in the notify
module which calls the task. This results in an
inability to deploy openstack with OVS-DPDK.

This commit fixes the name of the task in the
notify module.

Closes-Bug: #2033413
Change-Id: Iae8a937bb2c35d2eb83e2c4522d829a6cfe25f0d
Signed-off-by: Juan Pablo Suazo <jsuazo@whitestack.com>
This commit is contained in:
Juan Pablo Suazo Sarrocchi 2023-08-29 15:01:29 +00:00 committed by Juan Pablo Suazo
parent 6af1754071
commit 95317e5df2
2 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,7 @@
- Restart ovsdpdk-vswitchd container
- Ensuring ovsdpdk bridges are properly setup named
- wait for dpdk tunnel ip
- ovs-dpdk gather facts
- OVS-DPDK gather facts
- name: Waiting the ovs db service to be ready
vars:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes an issue were an OVS-DPDK task had a different name
to how it was being notified.