1
0
Fork 0
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:
Sebastiaan van Stijn 2018-05-13 22:24:04 +02:00
parent f4ebcb42ac
commit b526964584
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -38,7 +38,7 @@ func (d *Daemon) PluginIsNotPresent(name string) func(poll.LogT) poll.Result {
if err != nil {
return poll.Error(err)
}
return poll.Continue("plugin %q exists")
return poll.Continue("plugin %q exists", name)
})
}