mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix missing plugin name in message
This message was missing the name of the plugin, resulting in plugin_test.go:92: timeout hit after 30s: plugin %!q(MISSING) exists On failing tests. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
f4ebcb42ac
commit
b526964584
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ func (d *Daemon) PluginIsNotPresent(name string) func(poll.LogT) poll.Result {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return poll.Error(err)
|
return poll.Error(err)
|
||||||
}
|
}
|
||||||
return poll.Continue("plugin %q exists")
|
return poll.Continue("plugin %q exists", name)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue