From a8abc698a4d03488ac3808a9a3f106d6cb047e98 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Fri, 31 Jan 2025 08:44:49 +0100 Subject: fix(core): VPP startup sequence Signed-off-by: Peter Mikus Change-Id: I37899c45bf8d87f24cb67cdd120837a833955a3b --- resources/libraries/python/ContainerUtils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'resources/libraries/python/ContainerUtils.py') diff --git a/resources/libraries/python/ContainerUtils.py b/resources/libraries/python/ContainerUtils.py index 7d6d4d8673..887c869b8b 100644 --- a/resources/libraries/python/ContainerUtils.py +++ b/resources/libraries/python/ContainerUtils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2024 Cisco and/or its affiliates. +# Copyright (c) 2025 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -580,7 +580,6 @@ class ContainerManager: def stop_all_containers(self): """Stop all containers.""" - # TODO: Rework if containers can be affected outside ContainerManager. self._disconnect_papi_to_all_containers() for container in self.containers: self.engine.container = self.containers[container] @@ -588,7 +587,6 @@ class ContainerManager: def destroy_all_containers(self): """Destroy all containers.""" - # TODO: Rework if containers can be affected outside ContainerManager. self._disconnect_papi_to_all_containers() for container in self.containers: self.engine.container = self.containers[container] -- cgit 1.2.3-korg