saltstack/salt

View on GitHub
salt/pillar/__init__.py

Summary

Maintainability
F
1 wk
Test Coverage

Function render_pstate has a Cognitive Complexity of 135 (exceeds 5 allowed). Consider refactoring.
Open

    def render_pstate(self, sls, saltenv, mods, defaults=None):
        '''
        Collect a single pillar sls file and render it
        '''
        if defaults is None:
Severity: Minor
Found in salt/pillar/__init__.py - About 2 days 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

File __init__.py has 1023 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Render the pillar data
'''

Severity: Major
Found in salt/pillar/__init__.py - About 2 days to fix

    Function merge_tops has a Cognitive Complexity of 85 (exceeds 5 allowed). Consider refactoring.
    Open

        def merge_tops(self, tops):
            '''
            Cleanly merge the top files
            '''
            top = collections.defaultdict(OrderedDict)
    Severity: Minor
    Found in salt/pillar/__init__.py - About 1 day 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 get_tops has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_tops(self):
            '''
            Gather the top files
            '''
            tops = collections.defaultdict(list)
    Severity: Minor
    Found in salt/pillar/__init__.py - About 6 hrs 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 decrypt_pillar has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
    Open

        def decrypt_pillar(self, pillar):
            '''
            Decrypt the specified pillar dictionary items, if configured to do so
            '''
            errors = []
    Severity: Minor
    Found in salt/pillar/__init__.py - About 4 hrs 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 top_matches has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

        def top_matches(self, top, reload=False):
            '''
            Search through the top high data for matches and return the states
            that this minion needs to execute.
    
    
    Severity: Minor
    Found in salt/pillar/__init__.py - About 3 hrs 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 render_pillar has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        def render_pillar(self, matches, errors=None):
            '''
            Extract the sls pillar files from the matches and render them into the
            pillar
            '''
    Severity: Minor
    Found in salt/pillar/__init__.py - About 3 hrs 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 ext_pillar has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        def ext_pillar(self, pillar, errors=None):
            '''
            Render the external pillar data
            '''
            if errors is None:
    Severity: Minor
    Found in salt/pillar/__init__.py - About 2 hrs 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

    Cyclomatic complexity is too high in method render_pstate. (27)
    Open

        def render_pstate(self, sls, saltenv, mods, defaults=None):
            '''
            Collect a single pillar sls file and render it
            '''
            if defaults is None:
    Severity: Minor
    Found in salt/pillar/__init__.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function __gen_opts has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def __gen_opts(self, opts_in, grains, saltenv=None, ext=None, pillarenv=None):
            '''
            The options need to be altered to conform to the file client
            '''
            opts = copy.deepcopy(opts_in)
    Severity: Minor
    Found in salt/pillar/__init__.py - About 2 hrs 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 _external_pillar_data has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def _external_pillar_data(self, pillar, val, key):
            '''
            Builds actual pillar data structure and updates the ``pillar`` variable
            '''
            ext = None
    Severity: Minor
    Found in salt/pillar/__init__.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 compile_pillar has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def compile_pillar(self, ext=True):
            '''
            Render the pillar data and return
            '''
            top, top_errors = self.get_top()
    Severity: Minor
    Found in salt/pillar/__init__.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 __init__ has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, opts, grains, minion_id, saltenv, ext=None, functions=None,
                     pillar_override=None, pillarenv=None, extra_minion_data=None):
            self.minion_id = minion_id
            self.ext = ext
            if pillarenv is None:
    Severity: Minor
    Found in salt/pillar/__init__.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 get_ext_pillar_extra_minion_data has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_ext_pillar_extra_minion_data(self, opts):
            '''
            Returns the extra data from the minion's opts dict (the config file).
    
            This data will be passed to external pillar functions.
    Severity: Minor
    Found in salt/pillar/__init__.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

    Avoid deeply nested control flow statements.
    Open

                            for comp in ctop[saltenv][tgt]:
                                if isinstance(comp, dict):
                                    if 'match' in comp:
                                        matches.append(comp)
                                    if 'order' in comp:
    Severity: Major
    Found in salt/pillar/__init__.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if isinstance(item, six.string_types) and item not in env_matches:
                                  env_matches.append(item)
              return matches
      Severity: Major
      Found in salt/pillar/__init__.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                for sub_sls in state.pop('include'):
                                    if isinstance(sub_sls, dict):
                                        sub_sls, v = next(six.iteritems(sub_sls))
                                        defaults = v.get('defaults', {})
                                        key = v.get('key', None)
        Severity: Major
        Found in salt/pillar/__init__.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if not self.opts.get('pillar_includes_override_sls', False):
                                      # merge included state(s) with the current state
                                      # merged last to ensure that its values are
                                      # authoritative.
                                      include_states.append(state)
          Severity: Major
          Found in salt/pillar/__init__.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                    if isinstance(ctop[saltenv][tgt], six.string_types):
                                        ctop[saltenv][tgt] = [ctop[saltenv][tgt]]
                                    for comp in ctop[saltenv][tgt]:
            Severity: Major
            Found in salt/pillar/__init__.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                      if ignore_missing:
                                          if saltenv not in self.ignored_pillars:
                                              self.ignored_pillars[saltenv] = []
                                          self.ignored_pillars[saltenv].extend(states.keys())
                                      top[saltenv][tgt] = matches
              Severity: Major
              Found in salt/pillar/__init__.py - About 45 mins to fix

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

                    def compile_pillar(self, *args, **kwargs):  # Will likely just be pillar_dirs
                        '''
                        Compile pillar and set it to the cache, if not found.
                
                        :param args:
                Severity: Minor
                Found in salt/pillar/__init__.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

                Similar blocks of code found in 2 locations. Consider refactoring.
                Wontfix

                    def __init__(self, opts, grains, minion_id, saltenv, ext=None, functions=None,
                                 pillar_override=None, pillarenv=None, extra_minion_data=None):
                        self.opts = opts
                        self.opts['saltenv'] = saltenv
                        self.ext = ext
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 2 days to fix
                salt/pillar/__init__.py on lines 207..229

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 226.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Wontfix

                    def __init__(self, opts, grains, minion_id, saltenv, ext=None, functions=None,
                                 pillar_override=None, pillarenv=None, extra_minion_data=None):
                        self.opts = opts
                        self.opts['saltenv'] = saltenv
                        self.ext = ext
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 2 days to fix
                salt/pillar/__init__.py on lines 136..158

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 226.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                        if opts['state_top'].startswith('salt://'):
                            opts['state_top'] = opts['state_top']
                        elif opts['state_top'].startswith('/'):
                            opts['state_top'] = salt.utils.url.create(opts['state_top'][1:])
                        else:
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 6 hrs to fix
                salt/state.py on lines 3155..3160

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 111.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        for saltenv, ctops in six.iteritems(tops):
                            for ctop in ctops:
                                if 'include' not in ctop:
                                    continue
                                for sls in ctop['include']:
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 3 hrs to fix
                salt/state.py on lines 3286..3292

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 68.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        load = {'id': self.minion_id,
                                'grains': self.grains,
                                'saltenv': self.opts['saltenv'],
                                'pillarenv': self.opts['pillarenv'],
                                'pillar_override': self.pillar_override,
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 165..172

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 47.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        load = {'id': self.minion_id,
                                'grains': self.grains,
                                'saltenv': self.opts['saltenv'],
                                'pillarenv': self.opts['pillarenv'],
                                'pillar_override': self.pillar_override,
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 235..242

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 47.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                    def __gather_avail(self):
                        '''
                        Gather the lists of available sls data from the master
                        '''
                        avail = {}
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/state.py on lines 3123..3130

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 46.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                                pillar = merge(
                                    self.opts['pillar'],
                                    pillar,
                                    self.merge_strategy,
                                    self.opts.get('renderer', 'yaml'),
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 1058..1064

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 41.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        if self.pillar_override:
                            pillar = merge(
                                pillar,
                                self.pillar_override,
                                self.merge_strategy,
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 980..986

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 41.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        if 'pillar' in self.opts and self.opts.get('ssh_merge_pillar', False):
                            pillar = merge(
                                self.opts['pillar'],
                                pillar,
                                self.merge_strategy,
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 1038..1043

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 41.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                        if self.pillar_override:
                            pillar = merge(
                                pillar,
                                self.pillar_override,
                                self.merge_strategy,
                Severity: Major
                Found in salt/pillar/__init__.py and 1 other location - About 1 hr to fix
                salt/pillar/__init__.py on lines 1070..1076

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 41.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                There are no issues that match your filters.

                Category
                Status