Skip to content

Commit 544faaf

Browse files
committed
Fix minor typo in workspace resource deletor logs
Fixes typo in workspace deletor logs when failure occurs during collection deletion. Signed-off-by: hasheddan <[email protected]>
1 parent 4d5e3bd commit 544faaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/reconciler/tenancy/clusterworkspacedeletion/deletion/workspace_resource_deletor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ func (d *workspacedResourcesDeleter) deleteCollection(ctx context.Context, clust
169169
opts := metav1.DeleteOptions{PropagationPolicy: &background}
170170
if err := d.metadataClusterClient.Resource(gvr).DeleteCollection(
171171
logicalcluster.WithCluster(ctx, clusterName), opts, metav1.ListOptions{}); err != nil {
172-
logger.V(5).Error(err, "unexpected deleteColection error")
172+
logger.V(5).Error(err, "unexpected deleteCollection error")
173173
return true, err
174174
}
175175

0 commit comments

Comments
 (0)