mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Compile fix
Go 1.11beta1 (rightfully) complains:
> 15:38:37 daemon/cluster/controllers/plugin/controller.go:183:
> Entry.Debugf format %#T has unrecognized flag #
This debug print was added by commit 72c3bcf2a5
.
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3737194b9f
commit
a9a136572d
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ func (p *Controller) Wait(ctx context.Context) error {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
return ctx.Err()
|
return ctx.Err()
|
||||||
case e := <-events:
|
case e := <-events:
|
||||||
p.logger.Debugf("got event %#T", e)
|
p.logger.Debugf("got event %T", e)
|
||||||
|
|
||||||
switch e.(type) {
|
switch e.(type) {
|
||||||
case plugin.EventEnable:
|
case plugin.EventEnable:
|
||||||
|
|
Loading…
Reference in a new issue