Skip to content

Commit

Permalink
Fix nil pointer exception in awaiters
Browse files Browse the repository at this point in the history
  • Loading branch information
hausdorff committed Nov 26, 2018
1 parent 067ef8a commit a395da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/await/awaiters.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func untilCoreV1NamespaceDeleted(
if is404(err) {
return nil
} else if err != nil {
glog.V(3).Infof("Received error deleting namespace '%s': %#v", ns.GetName(), err)
glog.V(3).Infof("Received error deleting namespace '%s': %#v", name, err)
return err
}

Expand Down

0 comments on commit a395da0

Please sign in to comment.