Skip to content

Commit

Permalink
Merge pull request #10451 from glours/fix-gocyclo-ci-issue
Browse files Browse the repository at this point in the history
fix gocyclo lint error which currently block Compose CI
  • Loading branch information
glours committed Apr 7, 2023
2 parents 8b5b78f + cb688b5 commit eb933ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/compose/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ type fileMapping struct {
ContainerPath string
}

func (s *composeService) Watch(ctx context.Context, project *types.Project, services []string, _ api.WatchOptions) error {
func (s *composeService) Watch(ctx context.Context, project *types.Project, services []string, _ api.WatchOptions) error { //nolint: gocyclo
needRebuild := make(chan fileMapping)
needSync := make(chan fileMapping)

Expand Down

0 comments on commit eb933ad

Please sign in to comment.