Browse code

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 <aaron.lehmann@docker.com>
(cherry picked from commit 39c93cfb47783f2531ba44f062fd9a8b351d2224)

Aaron Lehmann authored on 2016/06/25 04:07:47
Showing 1 changed files
... ...
@@ -59,7 +59,6 @@ func (r *controller) ContainerStatus(ctx context.Context) (*api.ContainerStatus,
59 59
 
60 60
 // Update tasks a recent task update and applies it to the container.
61 61
 func (r *controller) Update(ctx context.Context, t *api.Task) error {
62
-	log.G(ctx).Warnf("task updates not yet supported")
63 62
 	// TODO(stevvooe): While assignment of tasks is idempotent, we do allow
64 63
 	// updates of metadata, such as labelling, as well as any other properties
65 64
 	// that make sense.