Skip to content

Commit

Permalink
Fix log statement with mismatched kv pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
djwhatle committed May 20, 2021
1 parent b6c05f2 commit f0c21bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/migmigration/pod.go
Expand Up @@ -222,7 +222,7 @@ func (t *Task) deleteVeleroPodsForCluster(cluster *migapi.MigCluster) error {
}
t.Log.Info("Deleting running Velero Pod on MigCluster",
"pod", path.Join(pod.Namespace, pod.Name),
"migCluster", cluster.Namespace, cluster.Name)
"migCluster", path.Join(cluster.Namespace, cluster.Name))
err = clusterClient.Delete(
context.TODO(),
&pod)
Expand Down

0 comments on commit f0c21bb

Please sign in to comment.