Skip to content

Commit

Permalink
Merge pull request #2140 from rohantmp/fixDelete
Browse files Browse the repository at this point in the history
[trivial] fix(cli): reword logs for clarity
  • Loading branch information
FabianKramm authored Sep 16, 2024
2 parents 2d00aaf + 565cbfb commit 8826b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lifecycle/lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func DeletePods(ctx context.Context, kubeClient *kubernetes.Clientset, labelSele
}

if len(list.Items) > 0 {
log.Infof("Delete %d vcluster pods", len(list.Items))
log.Infof("Relaunching %d vcluster pods", len(list.Items))
for _, item := range list.Items {
err = kubeClient.CoreV1().Pods(namespace).Delete(ctx, item.Name, metav1.DeleteOptions{})
if err != nil {
Expand Down

0 comments on commit 8826b38

Please sign in to comment.