Merge pull request #10451 from glours/fix-gocyclo-ci-issue

fix gocyclo lint error which currently block Compose CI
This commit is contained in:
Guillaume Lours 2023-04-07 10:41:36 +02:00 committed by GitHub
commit eb933adde0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)