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

Fix missing plugin name in message
This commit is contained in:
Vincent Demeester 2018-05-14 10:39:39 +02:00 committed by GitHub
commit 8c66c01cd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)
})
}