interrupt printer when `compose log` is cancelled
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
413f46ade0
commit
7205d918ad
|
|
@ -42,7 +42,7 @@ func (s *composeService) Logs(ctx context.Context, projectName string, consumer
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
eg.Go(func() error {
|
eg.Go(func() error {
|
||||||
_, err := printer.Run(false, "", nil)
|
_, err := printer.Run(ctx, false, "", nil)
|
||||||
return err
|
return err
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
package compose
|
package compose
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/docker/compose/v2/pkg/api"
|
"github.com/docker/compose/v2/pkg/api"
|
||||||
|
|
@ -27,7 +28,7 @@ import (
|
||||||
// logPrinter watch application containers an collect their logs
|
// logPrinter watch application containers an collect their logs
|
||||||
type logPrinter interface {
|
type logPrinter interface {
|
||||||
HandleEvent(event api.ContainerEvent)
|
HandleEvent(event api.ContainerEvent)
|
||||||
Run(cascadeStop bool, exitCodeFrom string, stopFn func() error) (int, error)
|
Run(ctx context.Context, cascadeStop bool, exitCodeFrom string, stopFn func() error) (int, error)
|
||||||
Cancel()
|
Cancel()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -56,14 +57,18 @@ func (p *printer) HandleEvent(event api.ContainerEvent) {
|
||||||
p.queue <- event
|
p.queue <- event
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *printer) Run(cascadeStop bool, exitCodeFrom string, stopFn func() error) (int, error) {
|
//nolint:gocyclo
|
||||||
|
func (p *printer) Run(ctx context.Context, cascadeStop bool, exitCodeFrom string, stopFn func() error) (int, error) {
|
||||||
var (
|
var (
|
||||||
aborting bool
|
aborting bool
|
||||||
exitCode int
|
exitCode int
|
||||||
)
|
)
|
||||||
containers := map[string]struct{}{}
|
containers := map[string]struct{}{}
|
||||||
for {
|
for {
|
||||||
event := <-p.queue
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return exitCode, ctx.Err()
|
||||||
|
case event := <-p.queue:
|
||||||
container := event.Container
|
container := event.Container
|
||||||
switch event.Type {
|
switch event.Type {
|
||||||
case api.UserCancel:
|
case api.UserCancel:
|
||||||
|
|
@ -108,4 +113,5 @@ func (p *printer) Run(cascadeStop bool, exitCodeFrom string, stopFn func() error
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ func (s *composeService) Up(ctx context.Context, project *types.Project, options
|
||||||
var exitCode int
|
var exitCode int
|
||||||
eg, ctx := errgroup.WithContext(ctx)
|
eg, ctx := errgroup.WithContext(ctx)
|
||||||
eg.Go(func() error {
|
eg.Go(func() error {
|
||||||
code, err := printer.Run(options.Start.CascadeStop, options.Start.ExitCodeFrom, stopFunc)
|
code, err := printer.Run(context.Background(), options.Start.CascadeStop, options.Start.ExitCodeFrom, stopFunc)
|
||||||
exitCode = code
|
exitCode = code
|
||||||
return err
|
return err
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue