Skip to content

Commit

Permalink
Fix getting the name of the not ready podys incorrectly
Browse files Browse the repository at this point in the history
Signed-off-by: Burak Sekili <buraksekili@gmail.com>
  • Loading branch information
buraksekili committed Nov 6, 2023
1 parent c862ae7 commit f7815d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readiness/readiness.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ func CheckIfRequiredDeploymentsAreReady() error {

fmt.Printf("The following pods have containers that are NOT ready: ")

for i := range notReadyPods {
fmt.Println(notReadyPods[i])
for podName, _ := range notReadyPods {
fmt.Println(podName)
}

time.Sleep(2 * time.Second)
Expand Down

0 comments on commit f7815d8

Please sign in to comment.