Skip to content

Commit

Permalink
Fix typo in log
Browse files Browse the repository at this point in the history
  • Loading branch information
nstogner committed Mar 8, 2024
1 parent c43bc52 commit fb10cda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (g *NodePoolGarbageCollector) Run(ctx context.Context) {
whyDelete := fmt.Sprintf("the node pool has no corresponding Nodes, the Pod (%s/%s) that triggered its creation no longer exists, and node pool is in an error state: %s",
np.CreatedForPod.Namespace, np.CreatedForPod.Name, np.ErrorMsg)
if err := g.Provider.DeleteNodePool(np.Name, &v1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: "tpu-provisioner-system"}}, whyDelete); err != nil {
log.Error(err, "failed to garbage colelct node pool")
log.Error(err, "failed to garbage collect node pool")
continue
}
}
Expand Down

0 comments on commit fb10cda

Please sign in to comment.