Merge pull request #1333 from gtardif/fix_ci_workflow

Fix linter
This commit is contained in:
Nicolas De loof 2021-02-22 15:27:45 +01:00 committed by GitHub
commit fa16feaddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -73,9 +73,9 @@ func runLogs(ctx context.Context, opts logsOptions, services []string) error {
} }
consumer := formatter.NewLogConsumer(ctx, os.Stdout, !opts.noColor, !opts.noPrefix) consumer := formatter.NewLogConsumer(ctx, os.Stdout, !opts.noColor, !opts.noPrefix)
return c.ComposeService().Logs(ctx, projectName, consumer, compose.LogOptions{ return c.ComposeService().Logs(ctx, projectName, consumer, compose.LogOptions{
Services: services, Services: services,
Follow: opts.follow, Follow: opts.follow,
Tail: opts.tail, Tail: opts.tail,
Timestamps: opts.timestamps, Timestamps: opts.timestamps,
}) })
} }