Codebase list docker-compose / 2bee75c
Fix formatting with gofmt -s Knew I'd forget something. Signed-off-by: Stephen Thirlwall <sdt@dr.com> Stephen Thirlwall authored 2 years ago Nicolas De loof committed 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
9393 err := s.Events(ctx, projectName, api.EventsOptions{
9494 Services: services,
9595 Consumer: func(event api.Event) error {
96 if (event.Status == "destroy") {
96 if event.Status == "destroy" {
9797 // This container can't be inspected, because it's gone.
9898 // Its already been removed from the watched map.
9999 return nil