localstack/localstack

View on GitHub
localstack-core/localstack/utils/sync.py

Summary

Maintainability
A
3 hrs
Test Coverage

Function wait_until has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

def wait_until(
    fn: Callable[[], bool],
    wait: float = 1.0,
    max_retries: int = 10,
    strategy: Literal["exponential", "static", "linear"] = "exponential",
Severity: Minor
Found in localstack-core/localstack/utils/sync.py - About 1 hr 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

Function wait_until has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

def wait_until(
Severity: Minor
Found in localstack-core/localstack/utils/sync.py - About 45 mins to fix

    Function retry has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def retry(function: Callable[..., T], retries=3, sleep=1.0, sleep_before=0, **kwargs) -> T:
    Severity: Minor
    Found in localstack-core/localstack/utils/sync.py - About 35 mins to fix

      Function poll_condition has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      def poll_condition(condition, timeout: float = None, interval: float = 0.5) -> bool:
          """
          Poll evaluates the given condition until a truthy value is returned. It does this every `interval` seconds
          (0.5 by default), until the timeout (in seconds, if any) is reached.
      
      
      Severity: Minor
      Found in localstack-core/localstack/utils/sync.py - 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

      Avoid too many return statements within this function.
      Open

              return wait_until(fn, next_wait, max_retries, strategy, _retries + 1, _max_wait)
      Severity: Major
      Found in localstack-core/localstack/utils/sync.py - About 30 mins to fix

        There are no issues that match your filters.

        Category
        Status