From 95317e5df28cc6641cb705b4c2dd5c9cf20d5586 Mon Sep 17 00:00:00 2001 From: Juan Pablo Suazo Sarrocchi Date: Tue, 29 Aug 2023 15:01:29 +0000 Subject: [PATCH] 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 --- ansible/roles/ovs-dpdk/handlers/main.yml | 2 +- .../notes/ovs-dpdk-task-name-bugfix-099b386886a40236.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/ovs-dpdk-task-name-bugfix-099b386886a40236.yaml diff --git a/ansible/roles/ovs-dpdk/handlers/main.yml b/ansible/roles/ovs-dpdk/handlers/main.yml index 1bd5761e55..a52ca0be66 100644 --- a/ansible/roles/ovs-dpdk/handlers/main.yml +++ b/ansible/roles/ovs-dpdk/handlers/main.yml @@ -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: diff --git a/releasenotes/notes/ovs-dpdk-task-name-bugfix-099b386886a40236.yaml b/releasenotes/notes/ovs-dpdk-task-name-bugfix-099b386886a40236.yaml new file mode 100644 index 0000000000..58c3096773 --- /dev/null +++ b/releasenotes/notes/ovs-dpdk-task-name-bugfix-099b386886a40236.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes an issue were an OVS-DPDK task had a different name + to how it was being notified.