From 72bb109a682eeb8ce577827de2b4faf89c77b838 Mon Sep 17 00:00:00 2001 From: Aaron Lehmann Date: Fri, 24 Jun 2016 12:07:47 -0700 Subject: [PATCH] Remove log warning on task update This warning appears in the course of normal use of swarm mode. Since it's meant more as an internal TODO than something which should be exposed to a user, remove the log message. Signed-off-by: Aaron Lehmann (cherry picked from commit 39c93cfb47783f2531ba44f062fd9a8b351d2224) --- daemon/cluster/executor/container/controller.go | 1 - 1 file changed, 1 deletion(-) diff --git a/daemon/cluster/executor/container/controller.go b/daemon/cluster/executor/container/controller.go index 91da0a1696..ddb65ae033 100644 --- a/daemon/cluster/executor/container/controller.go +++ b/daemon/cluster/executor/container/controller.go @@ -59,7 +59,6 @@ func (r *controller) ContainerStatus(ctx context.Context) (*api.ContainerStatus, // Update tasks a recent task update and applies it to the container. func (r *controller) Update(ctx context.Context, t *api.Task) error { - log.G(ctx).Warnf("task updates not yet supported") // TODO(stevvooe): While assignment of tasks is idempotent, we do allow // updates of metadata, such as labelling, as well as any other properties // that make sense.