Procházet zdrojové kódy

fix gocyclo lint error which currently block Compose CI

Signed-off-by: Guillaume Lours <[email protected]>
Guillaume Lours před 2 roky
rodič
revize
cb688b5fd4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)