aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/ContainerUtils.py
diff options
context:
space:
mode:
authorPeter Mikus <peter.mikus@icloud.com>2025-01-31 08:44:49 +0100
committerPeter Mikus <peter.mikus@icloud.com>2025-01-31 08:43:11 +0000
commita8abc698a4d03488ac3808a9a3f106d6cb047e98 (patch)
tree1366e649c70cb1e5f090ad99380af54824898dc6 /resources/libraries/python/ContainerUtils.py
parent4e6c67677f53c50e230672e0d0a2146ef963b70d (diff)
fix(core): VPP startup sequence
Signed-off-by: Peter Mikus <peter.mikus@icloud.com> Change-Id: I37899c45bf8d87f24cb67cdd120837a833955a3b
Diffstat (limited to 'resources/libraries/python/ContainerUtils.py')
-rw-r--r--resources/libraries/python/ContainerUtils.py4
1 files changed, 1 insertions, 3 deletions
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]