Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix compose logs: level=fatal msg="requires exactly 1 argument"
Fix #233

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Jun 2, 2021
commit b93c4ada86ee47c942041f741b94fea70b175183
2 changes: 1 addition & 1 deletion pkg/composer/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func (c *Composer) logs(ctx context.Context, containers map[string]serviceparser
if lo.Tail == "all" {
args = append(args, "+0")
} else {
args = append(args, lo.Tail)
}
args = append(args, lo.Tail)
}

args = append(args, id)
Expand Down