dotcloud/docker

View on GitHub

Showing 1,904 of 1,904 total issues

Method Daemon.CreateImageFromContainer has 9 return statements (exceeds 4 allowed).
Open

func (daemon *Daemon) CreateImageFromContainer(ctx context.Context, name string, c *backend.CreateImageConfig) (string, error) {
    start := time.Now()

    container, err := daemon.GetContainer(name)
    if err != nil {
Severity: Major
Found in daemon/commit.go - About 55 mins to fix

    Method layerStore.registerWithDescriptor has a Cognitive Complexity of 24 (exceeds 20 allowed). Consider refactoring.
    Open

    func (ls *layerStore) registerWithDescriptor(ts io.Reader, parent ChainID, descriptor distribution.Descriptor) (Layer, error) {
        // cErr is used to hold the error which will always trigger
        // cleanup of creates sources but may not be an error returned
        // to the caller (already exists).
        var cErr error
    Severity: Minor
    Found in layer/layer_store.go - 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 validateNetContainerMode has 9 return statements (exceeds 4 allowed).
    Open

    func validateNetContainerMode(c *container.Config, hc *container.HostConfig) error {
        // FIXME(thaJeztah): a network named "container" (without colon) is not seen as "container-mode" network.
        if string(hc.NetworkMode) != "container" && !hc.NetworkMode.IsContainer() {
            return nil
        }
    Severity: Major
    Found in runconfig/hostconfig.go - About 55 mins to fix

      Function decodeContainerConfig has 9 return statements (exceeds 4 allowed).
      Open

      func decodeContainerConfig(src io.Reader, si *sysinfo.SysInfo) (*container.Config, *container.HostConfig, *network.NetworkingConfig, error) {
          var w container.CreateRequest
          if err := loadJSON(src, &w); err != nil {
              return nil, nil, nil, err
          }
      Severity: Major
      Found in runconfig/config.go - About 55 mins to fix

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

                if iptable.ExistsNative("nat", "POSTROUTING", "-d", resolverIP, "-j", postroutingChain) {
                    if err := iptable.RawCombinedOutputNative("-t", "nat", "-F", postroutingChain); err != nil {
                        setupErr = err
                        return
                    }
        Severity: Minor
        Found in libnetwork/resolver_unix.go and 1 other location - About 55 mins to fix
        libnetwork/resolver_unix.go on lines 40..54

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

        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 c.Privileges.SELinuxContext != nil {
                    containerSpec.Privileges.SELinuxContext = &swarmapi.Privileges_SELinuxContext{
                        Disable: c.Privileges.SELinuxContext.Disable,
                        User:    c.Privileges.SELinuxContext.User,
                        Type:    c.Privileges.SELinuxContext.Type,
        Severity: Minor
        Found in daemon/cluster/convert/container.go and 1 other location - About 55 mins to fix
        daemon/cluster/convert/container.go on lines 64..72

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

        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 iptable.ExistsNative("nat", "OUTPUT", "-d", resolverIP, "-j", outputChain) {
                    if err := iptable.RawCombinedOutputNative("-t", "nat", "-F", outputChain); err != nil {
                        setupErr = err
                        return
                    }
        Severity: Minor
        Found in libnetwork/resolver_unix.go and 1 other location - About 55 mins to fix
        libnetwork/resolver_unix.go on lines 56..70

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

        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 c.Privileges.SELinuxContext != nil {
                    containerSpec.Privileges.SELinuxContext = &types.SELinuxContext{
                        Disable: c.Privileges.SELinuxContext.Disable,
                        User:    c.Privileges.SELinuxContext.User,
                        Type:    c.Privileges.SELinuxContext.Type,
        Severity: Minor
        Found in daemon/cluster/convert/container.go and 1 other location - About 55 mins to fix
        daemon/cluster/convert/container.go on lines 334..342

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

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

            if len(m.IngressPorts) > 0 {
                for iNdEx := len(m.IngressPorts) - 1; iNdEx >= 0; iNdEx-- {
                    {
                        size, err := m.IngressPorts[iNdEx].MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
        Severity: Major
        Found in libnetwork/agent.pb.go and 3 other locations - About 55 mins to fix
        api/types/swarm/runtime/plugin.pb.go on lines 230..243
        libnetwork/networkdb/networkdb.pb.go on lines 1153..1166
        libnetwork/networkdb/networkdb.pb.go on lines 1329..1342

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

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

            if len(m.Networks) > 0 {
                for iNdEx := len(m.Networks) - 1; iNdEx >= 0; iNdEx-- {
                    {
                        size, err := m.Networks[iNdEx].MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
        Severity: Major
        Found in libnetwork/networkdb/networkdb.pb.go and 3 other locations - About 55 mins to fix
        api/types/swarm/runtime/plugin.pb.go on lines 230..243
        libnetwork/agent.pb.go on lines 388..401
        libnetwork/networkdb/networkdb.pb.go on lines 1329..1342

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

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

            if len(m.Privileges) > 0 {
                for iNdEx := len(m.Privileges) - 1; iNdEx >= 0; iNdEx-- {
                    {
                        size, err := m.Privileges[iNdEx].MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
        Severity: Major
        Found in api/types/swarm/runtime/plugin.pb.go and 3 other locations - About 55 mins to fix
        libnetwork/agent.pb.go on lines 388..401
        libnetwork/networkdb/networkdb.pb.go on lines 1153..1166
        libnetwork/networkdb/networkdb.pb.go on lines 1329..1342

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

        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

        func (n *Namespace) SetGateway(gw net.IP) error {
            if len(gw) == 0 {
                return nil
            }
        
        
        Severity: Minor
        Found in libnetwork/osl/route_linux.go and 1 other location - About 55 mins to fix
        libnetwork/osl/route_linux.go on lines 141..154

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

        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 _, mount := range p.PluginObj.Config.Mounts {
                    // found the mount in the config
                    if mount.Name == s.name {
                        // is it settable ?
                        if ok, err := s.isSettable(allowedSettableFieldsMounts, mount.Settable); err != nil {
        Severity: Minor
        Found in plugin/v2/plugin.go and 1 other location - About 55 mins to fix
        plugin/v2/plugin.go on lines 171..188

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

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

            if len(m.Messages) > 0 {
                for iNdEx := len(m.Messages) - 1; iNdEx >= 0; iNdEx-- {
                    {
                        size, err := m.Messages[iNdEx].MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
        Severity: Major
        Found in libnetwork/networkdb/networkdb.pb.go and 3 other locations - About 55 mins to fix
        api/types/swarm/runtime/plugin.pb.go on lines 230..243
        libnetwork/agent.pb.go on lines 388..401
        libnetwork/networkdb/networkdb.pb.go on lines 1153..1166

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

        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

        func (n *Namespace) SetGatewayIPv6(gwv6 net.IP) error {
            if len(gwv6) == 0 {
                return nil
            }
        
        
        Severity: Minor
        Found in libnetwork/osl/route_linux.go and 1 other location - About 55 mins to fix
        libnetwork/osl/route_linux.go on lines 45..57

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

        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

                    LinuxSyscall: specs.LinuxSyscall{
                        Names: []string{
                            "clone",
                        },
                        Action: specs.ActAllow,
        Severity: Minor
        Found in profiles/seccomp/default_linux.go and 1 other location - About 55 mins to fix
        profiles/seccomp/default_linux.go on lines 638..651

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

        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

                    LinuxSyscall: specs.LinuxSyscall{
                        Names: []string{
                            "clone",
                        },
                        Action: specs.ActAllow,
        Severity: Minor
        Found in profiles/seccomp/default_linux.go and 1 other location - About 55 mins to fix
        profiles/seccomp/default_linux.go on lines 618..631

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

        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 _, device := range p.PluginObj.Config.Linux.Devices {
                    // found the device in the config
                    if device.Name == s.name {
                        // is it settable ?
                        if ok, err := s.isSettable(allowedSettableFieldsDevices, device.Settable); err != nil {
        Severity: Minor
        Found in plugin/v2/plugin.go and 1 other location - About 55 mins to fix
        plugin/v2/plugin.go on lines 151..168

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

        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 _, plugin := range ctx.plugins {
                log.G(context.TODO()).Debugf("AuthZ response using plugin %s", plugin.Name())
        
                authRes, err := plugin.AuthZResponse(ctx.authReq)
                if err != nil {
        Severity: Minor
        Found in pkg/authorization/authz.go and 1 other location - About 55 mins to fix
        pkg/authorization/authz.go on lines 103..114

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

        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 _, plugin := range ctx.plugins {
                log.G(context.TODO()).Debugf("AuthZ request using plugin %s", plugin.Name())
        
                authRes, err := plugin.AuthZRequest(ctx.authReq)
                if err != nil {
        Severity: Minor
        Found in pkg/authorization/authz.go and 1 other location - About 55 mins to fix
        pkg/authorization/authz.go on lines 127..138

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

        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

        Severity
        Category
        Status
        Source
        Language