Merge pull request #24850 from yongtang/24270-service-tasks-filter

Fix partial/full filter issue in `service tasks --filter`
This commit is contained in:
Vincent Demeester 2016-09-28 11:50:27 +02:00 committed by GitHub
commit 5ca7909308
1 changed files with 20 additions and 10 deletions

View File

@ -16,7 +16,7 @@ import (
) )
const ( const (
psTaskItemFmt = "%s\t%s\t%s\t%s\t%s\t%s %s ago\t%s\n" psTaskItemFmt = "%s\t%s\t%s\t%s\t%s %s ago\t%s\n"
maxErrLength = 30 maxErrLength = 30
) )
@ -48,11 +48,12 @@ func Print(dockerCli *command.DockerCli, ctx context.Context, tasks []swarm.Task
// Ignore flushing errors // Ignore flushing errors
defer writer.Flush() defer writer.Flush()
fmt.Fprintln(writer, strings.Join([]string{"ID", "NAME", "IMAGE", "NODE", "DESIRED STATE", "CURRENT STATE", "ERROR"}, "\t")) fmt.Fprintln(writer, strings.Join([]string{"NAME", "IMAGE", "NODE", "DESIRED STATE", "CURRENT STATE", "ERROR"}, "\t"))
prevName := "" prevServiceName := ""
prevSlot := 0
for _, task := range tasks { for _, task := range tasks {
serviceValue, err := resolver.Resolve(ctx, swarm.Service{}, task.ServiceID) serviceName, err := resolver.Resolve(ctx, swarm.Service{}, task.ServiceID)
if err != nil { if err != nil {
return err return err
} }
@ -61,17 +62,27 @@ func Print(dockerCli *command.DockerCli, ctx context.Context, tasks []swarm.Task
return err return err
} }
name := serviceValue name := task.Annotations.Name
if task.Slot > 0 { // TODO: This is the fallback <ServiceName>.<Slot>.<taskID> in case task name is not present in
name = fmt.Sprintf("%s.%d", name, task.Slot) // Annotations (upgraded from 1.12).
// We may be able to remove the following in the future.
if name == "" {
if task.Slot != 0 {
name = fmt.Sprintf("%v.%v.%v", serviceName, task.Slot, task.ID)
} else {
name = fmt.Sprintf("%v.%v.%v", serviceName, task.NodeID, task.ID)
}
} }
// Indent the name if necessary // Indent the name if necessary
indentedName := name indentedName := name
if prevName == name { // Since the new format of the task name is <ServiceName>.<Slot>.<taskID>, we should only compare
// <ServiceName> and <Slot> here.
if prevServiceName == serviceName && prevSlot == task.Slot {
indentedName = fmt.Sprintf(" \\_ %s", indentedName) indentedName = fmt.Sprintf(" \\_ %s", indentedName)
} }
prevName = name prevServiceName = serviceName
prevSlot = task.Slot
// Trim and quote the error message. // Trim and quote the error message.
taskErr := task.Status.Err taskErr := task.Status.Err
@ -85,7 +96,6 @@ func Print(dockerCli *command.DockerCli, ctx context.Context, tasks []swarm.Task
fmt.Fprintf( fmt.Fprintf(
writer, writer,
psTaskItemFmt, psTaskItemFmt,
task.ID,
indentedName, indentedName,
task.Spec.ContainerSpec.Image, task.Spec.ContainerSpec.Image,
nodeValue, nodeValue,