Merge pull request #30527 from continusec/minorformatstring
Fixup use of Error() with format string to use Errorf() Upstream-commit: 88ab0e0efc7a69813c9e186662f523872c4ea447 Component: engine
This commit is contained in:
@ -145,7 +145,7 @@ func (s *VolumeStore) Purge(name string) {
|
||||
v, exists := s.names[name]
|
||||
if exists {
|
||||
if _, err := volumedrivers.RemoveDriver(v.DriverName()); err != nil {
|
||||
logrus.Error("Error dereferencing volume driver: %v", err)
|
||||
logrus.Errorf("Error dereferencing volume driver: %v", err)
|
||||
}
|
||||
}
|
||||
if err := s.removeMeta(name); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user