lib/eventq/queue_worker.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
89%

Class QueueWorker has 22 methods (exceeds 20 allowed). Consider refactoring.
Wontfix

  class QueueWorker
    attr_accessor :is_running
    attr_reader :worker_status, :worker_adapter

    def initialize
Severity: Minor
Found in lib/eventq/queue_worker.rb - About 2 hrs to fix

    Method process_message has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Wontfix

        def process_message(block, message, retry_attempts, acceptance_args)
          abort = false
          error = false
          status = nil
    
    
    Severity: Minor
    Found in lib/eventq/queue_worker.rb - About 1 hr to fix

      Method configure has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Wontfix

          def configure(queue, options = {})
            # default thread count
            @thread_count = 1
            if options.key?(:thread_count)
              @thread_count = options[:thread_count] if options[:thread_count] > 0
      Severity: Minor
      Found in lib/eventq/queue_worker.rb - About 1 hr to fix

        Method process_message has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Wontfix

            def process_message(block, message, retry_attempts, acceptance_args)
              abort = false
              error = false
              status = nil
        
        
        Severity: Minor
        Found in lib/eventq/queue_worker.rb - 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 configure has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Wontfix

            def configure(queue, options = {})
              # default thread count
              @thread_count = 1
              if options.key?(:thread_count)
                @thread_count = options[:thread_count] if options[:thread_count] > 0
        Severity: Minor
        Found in lib/eventq/queue_worker.rb - 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

        There are no issues that match your filters.

        Category
        Status