From e4cfb3e5cb2b5953ef7c45eb0fe4a5680fbb9d63 Mon Sep 17 00:00:00 2001 From: Gregory Thiemonge Date: Mon, 31 Jan 2022 20:22:43 +0100 Subject: [PATCH] Remove incorrect info message In amphorav2 the controller now waits for the completion of the job to send a keepalive to taskflow. This patch is a follow up patch to I6619ba117f7051fe44086389789bc6e2810fd23d, it removes a INFO message that no longer makes sense because it is displayed after the completion of the flow. Change-Id: Iccc50867b28dd20ee45cad623ab19f23ff865682 (cherry picked from commit 24ce12a15669a5ebe997655a4b42ba00142dc687) --- octavia/controller/worker/v2/controller_worker.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/octavia/controller/worker/v2/controller_worker.py b/octavia/controller/worker/v2/controller_worker.py index 2032286a15..2aeddd35f3 100644 --- a/octavia/controller/worker/v2/controller_worker.py +++ b/octavia/controller/worker/v2/controller_worker.py @@ -100,10 +100,7 @@ class ControllerWorker(object): def run_flow(self, func, *args, **kwargs): if CONF.task_flow.jobboard_enabled: - job_id = self.services_controller.run_poster(func, *args, - **kwargs) - LOG.info("Taskflow job will execute flow %s with id %s", - func.__name__, job_id) + self.services_controller.run_poster(func, *args, **kwargs) else: store = kwargs.pop('store', None) tf = self.tf_engine.taskflow_load(