docker/swarmkit

View on GitHub

Showing 1,008 of 1,820 total issues

Method Supervisor.waitRestart has 5 return statements (exceeds 4 allowed).
Open

func (r *Supervisor) waitRestart(ctx context.Context, oldDelay *delayedStart, cluster *api.Cluster, taskID string) {
    // Wait for the last restart delay to elapse.
    select {
    case <-oldDelay.doneCh:
    case <-ctx.Done():
Severity: Major
Found in manager/orchestrator/restart/restart.go - About 35 mins to fix

    Method Orchestrator.Run has 5 return statements (exceeds 4 allowed).
    Open

    func (r *Orchestrator) Run(ctx context.Context) error {
        defer close(r.doneChan)
    
        // Watch changes to services and tasks
        queue := r.store.WatchQueue()
    Severity: Major
    Found in manager/orchestrator/replicated/replicated.go - About 35 mins to fix

      Method Dispatcher.moveTasksToOrphaned has 5 return statements (exceeds 4 allowed).
      Open

      func (d *Dispatcher) moveTasksToOrphaned(nodeID string) error {
          err := d.store.Batch(func(batch *store.Batch) error {
              var (
                  tasks []*api.Task
                  err   error
      Severity: Major
      Found in manager/dispatcher/dispatcher.go - About 35 mins to fix

        Method Dispatcher.UpdateTaskStatus has 5 return statements (exceeds 4 allowed).
        Open

        func (d *Dispatcher) UpdateTaskStatus(ctx context.Context, r *api.UpdateTaskStatusRequest) (*api.UpdateTaskStatusResponse, error) {
            d.rpcRW.RLock()
            defer d.rpcRW.RUnlock()
        
            dctx, err := d.isRunningLocked()
        Severity: Major
        Found in manager/dispatcher/dispatcher.go - About 35 mins to fix

          Method PluginFilter.Check has 5 return statements (exceeds 4 allowed).
          Open

          func (f *PluginFilter) Check(n *NodeInfo) bool {
              if n.Description == nil || n.Description.Engine == nil {
                  // If the node is not running Engine, plugins are not
                  // supported.
                  return true
          Severity: Major
          Found in manager/scheduler/filter.go - About 35 mins to fix

            Method Server.UpdateNode has a Cognitive Complexity of 22 (exceeds 20 allowed). Consider refactoring.
            Open

            func (s *Server) UpdateNode(ctx context.Context, request *api.UpdateNodeRequest) (*api.UpdateNodeResponse, error) {
                if request.NodeID == "" || request.NodeVersion == nil {
                    return nil, status.Errorf(codes.InvalidArgument, errInvalidArgument.Error())
                }
                if err := validateNodeSpec(request.Spec); err != nil {
            Severity: Minor
            Found in manager/controlapi/node.go - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method plugin.PublishVolume has 5 return statements (exceeds 4 allowed).
            Open

            func (p *plugin) PublishVolume(ctx context.Context, v *api.Volume, nodeID string) (map[string]string, error) {
                if !p.publisher {
                    return nil, nil
                }
                csiNodeID := p.swarmToCSI[nodeID]
            Severity: Major
            Found in manager/csi/plugin.go - About 35 mins to fix

              Method volumeSet.freeVolumes has 5 return statements (exceeds 4 allowed).
              Open

              func (vs *volumeSet) freeVolumes(batch *store.Batch) error {
                  for volumeID, info := range vs.volumes {
                      if err := batch.Update(func(tx store.Tx) error {
                          v := store.GetVolume(tx, volumeID)
                          if v == nil {
              Severity: Major
              Found in manager/scheduler/volumes.go - About 35 mins to fix

                Method Server.RemoveTask has 5 return statements (exceeds 4 allowed).
                Open

                func (s *Server) RemoveTask(ctx context.Context, request *api.RemoveTaskRequest) (*api.RemoveTaskResponse, error) {
                    if request.TaskID == "" {
                        return nil, status.Errorf(codes.InvalidArgument, errInvalidArgument.Error())
                    }
                
                
                Severity: Major
                Found in manager/controlapi/task.go - About 35 mins to fix

                  Method Updater.useExistingTask has 5 return statements (exceeds 4 allowed).
                  Open

                  func (u *Updater) useExistingTask(ctx context.Context, slot orchestrator.Slot, existing *api.Task) error {
                      var removeTasks []*api.Task
                      for _, t := range slot {
                          if t != existing {
                              removeTasks = append(removeTasks, t)
                  Severity: Major
                  Found in manager/orchestrator/update/updater.go - About 35 mins to fix

                    Method TasksByTimestamp.Less has 5 return statements (exceeds 4 allowed).
                    Open

                    func (t TasksByTimestamp) Less(i, j int) bool {
                        iTimestamp := taskTimestamp(t[i])
                        jTimestamp := taskTimestamp(t[j])
                    
                        if iTimestamp == nil {
                    Severity: Major
                    Found in manager/orchestrator/task.go - About 35 mins to fix

                      Method Scheduler.scheduleTaskGroup has 5 return statements (exceeds 4 allowed).
                      Open

                      func (s *Scheduler) scheduleTaskGroup(ctx context.Context, taskGroup map[string]*api.Task, schedulingDecisions map[string]schedulingDecision) {
                          // Pick at task at random from taskGroup to use for constraint
                          // evaluation. It doesn't matter which one we pick because all the
                          // tasks in the group are equal in terms of the fields the constraint
                          // filters consider.
                      Severity: Major
                      Found in manager/scheduler/scheduler.go - About 35 mins to fix

                        Function validateResources has 5 return statements (exceeds 4 allowed).
                        Open

                        func validateResources(r *api.Resources) error {
                            if r == nil {
                                return nil
                            }
                        
                        
                        Severity: Major
                        Found in manager/controlapi/service.go - About 35 mins to fix

                          Method Server.RemoveService has 5 return statements (exceeds 4 allowed).
                          Open

                          func (s *Server) RemoveService(ctx context.Context, request *api.RemoveServiceRequest) (*api.RemoveServiceResponse, error) {
                              if request.ServiceID == "" {
                                  return nil, status.Errorf(codes.InvalidArgument, errInvalidArgument.Error())
                              }
                          
                          
                          Severity: Major
                          Found in manager/controlapi/service.go - About 35 mins to fix

                            Method Updater.removeOldTasks has 5 return statements (exceeds 4 allowed).
                            Open

                            func (u *Updater) removeOldTasks(ctx context.Context, batch *store.Batch, removeTasks []*api.Task) (*api.Task, error) {
                                var (
                                    lastErr     error
                                    removedTask *api.Task
                                )
                            Severity: Major
                            Found in manager/orchestrator/update/updater.go - About 35 mins to fix

                              Method Manager.getPlugin has 5 return statements (exceeds 4 allowed).
                              Open

                              func (vm *Manager) getPlugin(name string) (Plugin, error) {
                                  // if the plugin already exists, we can just return it.
                                  if p, ok := vm.plugins[name]; ok {
                                      return p, nil
                                  }
                              Severity: Major
                              Found in manager/csi/manager.go - About 35 mins to fix

                                Method Manager.createVolume has 5 return statements (exceeds 4 allowed).
                                Open

                                func (vm *Manager) createVolume(ctx context.Context, v *api.Volume) error {
                                    l := log.G(ctx).WithField("volume.id", v.ID).WithField("driver", v.Spec.Driver.Name)
                                    l.Info("creating volume")
                                
                                    p, err := vm.getPlugin(v.Spec.Driver.Name)
                                Severity: Major
                                Found in manager/csi/manager.go - About 35 mins to fix

                                  Method volumeSet.isVolumeAvailableOnNode has 5 return statements (exceeds 4 allowed).
                                  Open

                                  func (vs *volumeSet) isVolumeAvailableOnNode(mount *api.Mount, node *NodeInfo) string {
                                      source := mount.Source
                                      // first, discern whether we're looking for a group or a volume
                                      // try trimming off the "group:" prefix. if the resulting string is
                                      // different from the input string (meaning something has been trimmed),
                                  Severity: Major
                                  Found in manager/scheduler/volumes.go - About 35 mins to fix

                                    Method Dispatcher.Run has 5 return statements (exceeds 4 allowed).
                                    Open

                                    func (d *Dispatcher) Run(ctx context.Context) error {
                                        ctx = log.WithModule(ctx, "dispatcher")
                                        log.G(ctx).Info("dispatcher starting")
                                    
                                        d.taskUpdatesLock.Lock()
                                    Severity: Major
                                    Found in manager/dispatcher/dispatcher.go - About 35 mins to fix

                                      Method Deallocator.processNetwork has 5 return statements (exceeds 4 allowed).
                                      Open

                                      func (deallocator *Deallocator) processNetwork(ctx context.Context, tx store.Tx, network *api.Network, ignoreServiceID *string) (updated bool, err error) {
                                          if !network.PendingDelete {
                                              return
                                          }
                                      
                                      
                                      Severity: Major
                                      Found in manager/deallocator/deallocator.go - About 35 mins to fix
                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language