Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
once more
Browse files Browse the repository at this point in the history
Signed-off-by: Katrina Rogan <katroganGH@gmail.com>
  • Loading branch information
katrogan committed Jan 22, 2024
1 parent a2920d9 commit 3c6dafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sandbox/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func WatchFlyteDeployment(ctx context.Context, appsClient corev1.CoreV1Interface
if total != 0 {
for _, v := range pods.Items {
for _, condition := range v.Status.Conditions {
if fmt.Sprintf("%s", condition.Type) == fmt.Sprintf("%s", corev1api.PodReady) && condition.Status == corev1api.ConditionTrue {
if string(condition.Type) == string(corev1api.PodReady) && condition.Status == corev1api.ConditionTrue {
ready++
break
}
Expand Down

0 comments on commit 3c6dafa

Please sign in to comment.