Skip to content

Commit

Permalink
feat(deployment) Rebase side effects (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
gciezkowski-acc committed Feb 12, 2025
1 parent 6e26ea1 commit c8b28d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file.
4 changes: 2 additions & 2 deletions pkg/internal/local/setup/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ func (m *Manifest) waitUntilDeploymentReady(ctx context.Context, clusterName, na
return err
}
if deployment.Status.Conditions == nil {
return fmt.Errorf("deployment %s is not yet ready", deploymentName)
return fmt.Errorf("deployment %s is not yet ready", name)
}
available := false
for _, condition := range deployment.Status.Conditions {
Expand All @@ -352,7 +352,7 @@ func (m *Manifest) waitUntilDeploymentReady(ctx context.Context, clusterName, na
}
}
if !available {
return fmt.Errorf("deployment %s is not yet ready", deploymentName)
return fmt.Errorf("deployment %s is not yet ready", name)
}
return nil
}, b)
Expand Down

0 comments on commit c8b28d5

Please sign in to comment.