Skip to content

Commit

Permalink
Remove logging of not running pods details in BaseK8S class for clean…
Browse files Browse the repository at this point in the history
…er output
  • Loading branch information
kooomix committed Jan 1, 2025
1 parent ef23e89 commit 233d072
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests_scripts/kubernetes/base_k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,6 @@ def verify_running_pods(self, namespace: str, replicas: int = None, name: str =

all_pods_message = self.get_all_pods_printable_details()
Logger.logger.info(f"cluster states:\n{all_pods_message}")
not_running_pods_message = self.get_all_not_running_pods_describe_details()
Logger.logger.info(f"not running pods details:\n{not_running_pods_message}")
raise Exception("wrong number of pods are running after {} seconds. expected: {}, running: {}"
.format(delta_t, replicas, len(running_pods))) # , len(total_pods)))

Expand Down

0 comments on commit 233d072

Please sign in to comment.