Merge pull request #37052 from thaJeztah/fix-missing-name-in-message

Fix missing plugin name in message
Upstream-commit: 8c66c01cd4d2b222d915b9a7123ab8562359283c
Component: engine
This commit is contained in:
Vincent Demeester
2018-05-14 10:39:39 +02:00
committed by GitHub
@@ -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)
})
}