| 407 | } |
| 408 | |
| 409 | type globalProgressUpdater struct { |
| 410 | progressOut progress.Output |
| 411 | |
| 412 | initialized bool |
| 413 | done bool |
| 414 | } |
| 415 | |
| 416 | func (u *globalProgressUpdater) update(_ swarm.Service, tasks []swarm.Task, activeNodes map[string]struct{}, rollback bool) (bool, error) { |
| 417 | tasksByNode := u.tasksByNode(tasks) |
nothing calls this directly
no outgoing calls
no test coverage detected