(c container.Summary)
| 158 | } |
| 159 | |
| 160 | func isNotOneOff(c container.Summary) bool { |
| 161 | v, ok := c.Labels[api.OneoffLabel] |
| 162 | return !ok || v == "False" |
| 163 | } |
| 164 | |
| 165 | func isNotRunning(c container.Summary) bool { |
| 166 | return c.State != container.StateRunning |
no outgoing calls
no test coverage detected