Skip to content

Commit

Permalink
fix(clustertool): remove badly added return
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivatePuffin committed Oct 26, 2024
1 parent cc10a39 commit d1d6098
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion clustertool/pkg/kubectlcmds/checkstatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ func CheckStatus(requiredPods []string, excludePod []string, timeout time.Durati
pods, err := clientset.CoreV1().Pods("").List(context.TODO(), metav1.ListOptions{})
if err != nil {
log.Error().Err(err).Msg("Error listing pods")
return fmt.Errorf("error listing pods: %w", err)
}

// Check if the required pods are both present and running
Expand Down

0 comments on commit d1d6098

Please sign in to comment.