saltstack/salt

View on GitHub
salt/modules/solr.py

Summary

Maintainability
F
1 wk
Test Coverage

File solr.py has 1053 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Apache Solr Salt Module

Author: Jed Glazner
Severity: Major
Found in salt/modules/solr.py - About 2 days to fix

    Function match_index_versions has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
    Open

    def match_index_versions(host=None, core_name=None):
        '''
        SLAVE CALL
        Verifies that the master and the slave versions are in sync by
        comparing the index version. If you are constantly pushing updates
    Severity: Minor
    Found in salt/modules/solr.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 backup has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    def backup(host=None, core_name=None, append_core_to_path=False):
        '''
        Tell solr make a backup.  This method can be mis-leading since it uses the
        backup API.  If an error happens during the backup you are not notified.
        The status: 'OK' in the response simply means that solr received the
    Severity: Minor
    Found in salt/modules/solr.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 is_replication_enabled has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def is_replication_enabled(host=None, core_name=None):
        '''
        SLAVE CALL
        Check for errors, and determine if a slave is replicating or not.
    
    
    Severity: Minor
    Found in salt/modules/solr.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 _find_value has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

    def _find_value(ret_dict, key, path=None):
        '''
        PRIVATE METHOD
        Traverses a dictionary of dictionaries/lists to find key
        and return the value stored.
    Severity: Minor
    Found in salt/modules/solr.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 set_replication_enabled has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_replication_enabled(status, host=None, core_name=None):
        '''
        MASTER ONLY
        Sets the master to ignore poll requests from the slaves. Useful when you
        don't want the slaves replicating during indexing or when clearing the
    Severity: Minor
    Found in salt/modules/solr.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 _format_url has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _format_url(handler, host=None, core_name=None, extra=None):
        '''
        PRIVATE METHOD
        Formats the URL based on parameters, and if cores are used or not
    
    
    Severity: Minor
    Found in salt/modules/solr.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 lucene_version has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def lucene_version(core_name=None):
        '''
        Gets the lucene version that solr is using. If you are running a multi-core
        setup you should specify a core name since all the cores run under the same
        servlet container, they will all have the same version.
    Severity: Minor
    Found in salt/modules/solr.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 version has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def version(core_name=None):
        '''
        Gets the solr version for the core specified.  You should specify a core
        here as all the cores will run under the same servlet container and so will
        all have the same version.
    Severity: Minor
    Found in salt/modules/solr.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 set_is_polling has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_is_polling(polling, host=None, core_name=None):
        '''
        SLAVE CALL
        Prevent the slaves from polling the master for updates.
    
    
    Severity: Minor
    Found in salt/modules/solr.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 full_import has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def full_import(handler, host=None, core_name=None, options=None, extra=None):
        '''
        MASTER ONLY
        Submits an import command to the specified handler using specified options.
        This command can only be run if the minion is configured with
    Severity: Minor
    Found in salt/modules/solr.py - About 55 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

    Function _pre_index_check has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def _pre_index_check(handler, host=None, core_name=None):
        '''
        PRIVATE METHOD - MASTER CALL
        Does a pre-check to make sure that all the options are set and that
        we can talk to solr before trying to send a command to solr. This
    Severity: Minor
    Found in salt/modules/solr.py - About 45 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

    Function delta_import has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def delta_import(handler, host=None, core_name=None, options=None, extra=None):
        '''
        Submits an import command to the specified handler using specified options.
        This command can only be run if the minion is configured with
        solr.type=master
    Severity: Minor
    Found in salt/modules/solr.py - About 45 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

    Function ping has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def ping(host=None, core_name=None):
        '''
        Does a health check on solr, makes sure solr can talk to the indexes.
    
        host : str (None)
    Severity: Minor
    Found in salt/modules/solr.py - About 45 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

    Function optimize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def optimize(host=None, core_name=None):
        '''
        Search queries fast, but it is a very expensive operation. The ideal
        process is to run this with a master/slave configuration.  Then you
        can optimize the master, and push the optimized index to the slaves.
    Severity: Minor
    Found in salt/modules/solr.py - About 45 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

    Function reload_core has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def reload_core(host=None, core_name=None):
        '''
        MULTI-CORE HOSTS ONLY
        Load a new core from the same configuration as an existing registered core.
        While the "new" core is initializing, the "old" one will continue to accept
    Severity: Minor
    Found in salt/modules/solr.py - About 45 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

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

    def replication_details(host=None, core_name=None):
        '''
        Get the full replication details.
    
        host : str (None)
    Severity: Minor
    Found in salt/modules/solr.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

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

    def core_status(host=None, core_name=None):
        '''
        MULTI-CORE HOSTS ONLY
        Get the status for a given core or all cores if no core is specified
    
    
    Severity: Minor
    Found in salt/modules/solr.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 _http_request(url)
    Severity: Major
    Found in salt/modules/solr.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return resp
      Severity: Major
      Found in salt/modules/solr.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return _get_return_dict(False, data=resp['data'], errors=errors)
        Severity: Major
        Found in salt/modules/solr.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return None
          Severity: Major
          Found in salt/modules/solr.py - About 30 mins to fix

            Function _get_none_or_value has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def _get_none_or_value(value):
                '''
                PRIVATE METHOD
                Checks to see if the value of a primitive or built-in container such as
                a list, dict, set, tuple etc is empty or none. None type is returned if the
            Severity: Minor
            Found in salt/modules/solr.py - About 25 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.
            Open

            def reload_core(host=None, core_name=None):
                '''
                MULTI-CORE HOSTS ONLY
                Load a new core from the same configuration as an existing registered core.
                While the "new" core is initializing, the "old" one will continue to accept
            Severity: Major
            Found in salt/modules/solr.py and 1 other location - About 1 day to fix
            salt/modules/solr.py on lines 1072..1109

            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 206.

            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

            def core_status(host=None, core_name=None):
                '''
                MULTI-CORE HOSTS ONLY
                Get the status for a given core or all cores if no core is specified
            
            
            Severity: Major
            Found in salt/modules/solr.py and 1 other location - About 1 day to fix
            salt/modules/solr.py on lines 1025..1069

            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 206.

            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 user and password:
                    basic = _HTTPBasicAuthHandler()
                    basic.add_password(
                        realm=realm, uri=url, user=user, passwd=password
                    )
            Severity: Major
            Found in salt/modules/solr.py and 1 other location - About 3 hrs to fix
            salt/modules/apache.py on lines 370..375

            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 75.

            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 options['clean']:
                    resp = set_replication_enabled(False, host=host, core_name=core_name)
                    if not resp['success']:
                        errors = ['Failed to set the replication status on the master.']
                        return _get_return_dict(False, errors=errors)
            Severity: Major
            Found in salt/modules/solr.py and 1 other location - About 1 hr to fix
            salt/modules/solr.py on lines 1296..1300

            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 49.

            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 options['clean'] and _check_for_cores():
                    resp = set_replication_enabled(False, host=host, core_name=core_name)
                    if not resp['success']:
                        errors = ['Failed to set the replication status on the master.']
                        return _get_return_dict(False, errors=errors)
            Severity: Major
            Found in salt/modules/solr.py and 1 other location - About 1 hr to fix
            salt/modules/solr.py on lines 1242..1246

            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 49.

            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 3 locations. Consider refactoring.
            Open

                if not _is_master() and _get_none_or_value(host) is None:
                    err = ['solr.delta_import can only be called on "master" minions']
                    return _get_return_dict(False, errors=err)
            Severity: Major
            Found in salt/modules/solr.py and 2 other locations - About 45 mins to fix
            salt/modules/solr.py on lines 1183..1185
            salt/modules/solr.py on lines 1334..1336

            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 43.

            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 3 locations. Consider refactoring.
            Open

                if not _is_master() and _get_none_or_value(host) is None:
                    err = ['solr.abort_import can only be called on "master" minions']
                    return _get_return_dict(False, errors=err)
            Severity: Major
            Found in salt/modules/solr.py and 2 other locations - About 45 mins to fix
            salt/modules/solr.py on lines 1287..1289
            salt/modules/solr.py on lines 1334..1336

            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 43.

            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 3 locations. Consider refactoring.
            Open

                if not _is_master() and _get_none_or_value(host) is None:
                    errors = ['solr.import_status can only be called by "master" minions']
                    return _get_return_dict(False, errors=errors)
            Severity: Major
            Found in salt/modules/solr.py and 2 other locations - About 45 mins to fix
            salt/modules/solr.py on lines 1183..1185
            salt/modules/solr.py on lines 1287..1289

            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 43.

            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 _get_none_or_value(core_name) is None and _check_for_cores():
                    for name in __opts__['solr.cores']:
                        response = _replication_request('details', host=host,
                                                        core_name=name)
                        ret, success = _checks(ret, success, response, name)
            Severity: Minor
            Found in salt/modules/solr.py and 1 other location - About 45 mins to fix
            salt/modules/solr.py on lines 791..794

            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 43.

            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

                    for name in __opts__['solr.cores']:
                        response = _replication_request('details', host=host,
                                                        core_name=name)
                        ret, success = _match(ret, success, response, name)
            Severity: Minor
            Found in salt/modules/solr.py and 1 other location - About 45 mins to fix
            salt/modules/solr.py on lines 698..702

            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 43.

            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