Skip to content

Commit

Permalink
Merge pull request kubernetes-retired#997 from nixpanic/gidallocator/…
Browse files Browse the repository at this point in the history
…fix-warning

gidallocator: fix warning message
  • Loading branch information
wongma7 committed Oct 1, 2018
2 parents e5df6a8 + 3f726dc commit 08708ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gidallocator/allocator.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func (a *Allocator) collectGids(className string, gidTable *allocator.MinMaxAllo

_, err = gidTable.Allocate(gid)
if err == allocator.ErrConflict {
glog.Warningf("gid %v found in pv %v was already allocated", gid)
glog.Warningf("gid %v found in pv %v was already allocated", gid, pvName)
} else if err != nil {
glog.Errorf("failed to store gid %v found in pv '%v': %v", gid, pvName, err)
return err
Expand Down

0 comments on commit 08708ae

Please sign in to comment.