From 28b3f7af6b636967a2cbbd19a3ac77bee95ae0a4 Mon Sep 17 00:00:00 2001 From: Jen Patague Date: Tue, 9 Jul 2024 09:43:42 -0700 Subject: [PATCH] Fix readded comment after pulling master --- task_processing/plugins/kubernetes/kubernetes_pod_executor.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/task_processing/plugins/kubernetes/kubernetes_pod_executor.py b/task_processing/plugins/kubernetes/kubernetes_pod_executor.py index a0cd604..fc05544 100644 --- a/task_processing/plugins/kubernetes/kubernetes_pod_executor.py +++ b/task_processing/plugins/kubernetes/kubernetes_pod_executor.py @@ -662,9 +662,6 @@ def kill(self, task_id: str) -> bool: This function will request that Kubernetes delete the named Pod and will return True if the Pod termination request was succesfully emitted or False otherwise. """ - # NOTE: we're purposely not removing this task from `task_metadata` as we want - # to handle that with the Watch that we'll set to monitor each Pod for events. - # TODO(TASKPROC-242): actually handle termination events terminated = any( kube_client.terminate_pod( namespace=self.namespace,