Przeglądaj źródła

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

fix gocyclo lint error which currently block Compose CI
Guillaume Lours 2 lat temu
rodzic
commit
eb933adde0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      pkg/compose/watch.go

+ 1 - 1
pkg/compose/watch.go

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