mirror of
https://github.com/docker/compose.git
synced 2025-07-24 22:24:41 +02:00
don't invoke r.Close on error as r == nil
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
de8834d434
commit
87abb4eb9c
@ -51,11 +51,11 @@ func (s *composeService) Logs(ctx context.Context, projectName string, consumer
|
|||||||
Tail: options.Tail,
|
Tail: options.Tail,
|
||||||
Timestamps: options.Timestamps,
|
Timestamps: options.Timestamps,
|
||||||
})
|
})
|
||||||
defer r.Close() // nolint errcheck
|
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
defer r.Close() // nolint errcheck
|
||||||
|
|
||||||
name := getContainerNameWithoutProject(c)
|
name := getContainerNameWithoutProject(c)
|
||||||
w := utils.GetWriter(name, service, func(event compose.ContainerEvent) {
|
w := utils.GetWriter(name, service, func(event compose.ContainerEvent) {
|
||||||
consumer.Log(name, service, event.Line)
|
consumer.Log(name, service, event.Line)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user