Skip to content

Commit

Permalink
Small fix logging in pod utils (#97)
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys authored Jun 4, 2024
1 parent 71a481d commit 2309a59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static void waitForPodsReady(String namespaceName, boolean containersRead
*/
public static void waitForPodsReady(String namespaceName, LabelSelector selector, int expectPodsCount,
boolean containers, Runnable onTimeout) {
Wait.until("readiness of all Pods matching " + selector + " in Namespace" + namespaceName,
Wait.until("readiness of all Pods matching " + selector + " in Namespace " + namespaceName,
TestFrameConstants.GLOBAL_POLL_INTERVAL_MEDIUM, READINESS_TIMEOUT,
() -> {
List<Pod> pods = KubeResourceManager.getKubeClient().getClient().pods()
Expand Down

0 comments on commit 2309a59

Please sign in to comment.