Skip to content

Commit

Permalink
Remove redundant value assignment in for loop to fix linter
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 ec848fe commit fc279ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readiness/readiness.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func CheckIfRequiredDeploymentsAreReady() error {

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

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

Expand Down

0 comments on commit fc279ac

Please sign in to comment.