Merge "Fix log message guard"

This commit is contained in:
Zuul 2019-02-22 18:18:22 +00:00 committed by Gerrit Code Review
commit 125ec102dc
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ class Test(object):
}
pod_list = self.tiller.k8s.client.list_namespaced_pod(**list_args)
test_pods = (pod for pod in pod_list.items if is_test_pod(pod))
test_pods = [pod for pod in pod_list.items if is_test_pod(pod)]
if test_pods:
LOG.info(