xmidt-org/themis

View on GitHub

Showing 39 of 39 total issues

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

func NewHandlerJWK(e endpoint.Endpoint) Handler {
    return kithttp.NewServer(
        e,
        func(ctx context.Context, request *http.Request) (interface{}, error) {
            kid, ok := mux.Vars(request)["kid"]
Severity: Major
Found in key/handler.go and 1 other location - About 2 hrs to fix
key/handler.go on lines 27..50

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

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 NewHandler(e endpoint.Endpoint) Handler {
    return kithttp.NewServer(
        e,
        func(ctx context.Context, request *http.Request) (interface{}, error) {
            kid, ok := mux.Vars(request)["kid"]
Severity: Major
Found in key/handler.go and 1 other location - About 2 hrs to fix
key/handler.go on lines 54..77

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

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

Function NewPair has 82 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func NewPair(kid string, key interface{}) (Pair, error) {
    switch k := key.(type) {
    case *rsa.PrivateKey:
        verifyPEM, err := MarshalPKIXPublicKeyToPEM(&k.PublicKey)
        if err != nil {
Severity: Major
Found in key/pair.go - About 2 hrs to fix

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

        for name, value := range o.Claims {
            if len(value.Header) > 0 || len(value.Parameter) > 0 {
                if len(value.Variable) > 0 {
                    return nil, ErrVariableNotAllowed
                }
    Severity: Major
    Found in token/transport.go and 1 other location - About 1 hr to fix
    token/transport.go on lines 237..260

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

    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, value := range o.Metadata {
            if len(value.Header) > 0 || len(value.Parameter) > 0 {
                if len(value.Variable) > 0 {
                    return nil, ErrVariableNotAllowed
                }
    Severity: Major
    Found in token/transport.go and 1 other location - About 1 hr to fix
    token/transport.go on lines 212..235

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

    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

    func (r *registry) NewGaugeVec(o prometheus.GaugeOpts, labelNames []string) (*prometheus.GaugeVec, error) {
        o.Namespace = r.namespace(o.Namespace)
        o.Subsystem = r.subsystem(o.Subsystem)
        o.ConstLabels = r.mergeConstLabels(o.ConstLabels)
    
    
    Severity: Major
    Found in xmetrics/registry.go and 3 other locations - About 1 hr to fix
    xmetrics/registry.go on lines 141..152
    xmetrics/registry.go on lines 185..196
    xmetrics/registry.go on lines 207..218

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

    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

    func (r *registry) NewSummaryVec(o prometheus.SummaryOpts, labelNames []string) (*prometheus.SummaryVec, error) {
        o.Namespace = r.namespace(o.Namespace)
        o.Subsystem = r.subsystem(o.Subsystem)
        o.ConstLabels = r.mergeConstLabels(o.ConstLabels)
    
    
    Severity: Major
    Found in xmetrics/registry.go and 3 other locations - About 1 hr to fix
    xmetrics/registry.go on lines 141..152
    xmetrics/registry.go on lines 163..174
    xmetrics/registry.go on lines 185..196

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

    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

    func (r *registry) NewHistogramVec(o prometheus.HistogramOpts, labelNames []string) (*prometheus.HistogramVec, error) {
        o.Namespace = r.namespace(o.Namespace)
        o.Subsystem = r.subsystem(o.Subsystem)
        o.ConstLabels = r.mergeConstLabels(o.ConstLabels)
    
    
    Severity: Major
    Found in xmetrics/registry.go and 3 other locations - About 1 hr to fix
    xmetrics/registry.go on lines 141..152
    xmetrics/registry.go on lines 163..174
    xmetrics/registry.go on lines 207..218

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

    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

    func (r *registry) NewCounterVec(o prometheus.CounterOpts, labelNames []string) (*prometheus.CounterVec, error) {
        o.Namespace = r.namespace(o.Namespace)
        o.Subsystem = r.subsystem(o.Subsystem)
        o.ConstLabels = r.mergeConstLabels(o.ConstLabels)
    
    
    Severity: Major
    Found in xmetrics/registry.go and 3 other locations - About 1 hr to fix
    xmetrics/registry.go on lines 163..174
    xmetrics/registry.go on lines 185..196
    xmetrics/registry.go on lines 207..218

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

    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

    Function NewPair has 15 return statements (exceeds 4 allowed).
    Open

    func NewPair(kid string, key interface{}) (Pair, error) {
        switch k := key.(type) {
        case *rsa.PrivateKey:
            verifyPEM, err := MarshalPKIXPublicKeyToPEM(&k.PublicKey)
            if err != nil {
    Severity: Major
    Found in key/pair.go - About 1 hr to fix

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

      func ProvideHandlerCounter(o prometheus.CounterOpts, l *ServerLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (HandlerCounter, error) {
                  c, err := f.NewCounterVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 27..42
      xmetrics/xmetricshttp/provide.go on lines 44..59
      xmetrics/xmetricshttp/provide.go on lines 77..92
      xmetrics/xmetricshttp/provide.go on lines 94..109
      xmetrics/xmetricshttp/provide.go on lines 111..126

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

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

      func ProvideRoundTripperCounter(o prometheus.CounterOpts, l *ClientLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (RoundTripperCounter, error) {
                  c, err := f.NewCounterVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 10..25
      xmetrics/xmetricshttp/provide.go on lines 27..42
      xmetrics/xmetricshttp/provide.go on lines 44..59
      xmetrics/xmetricshttp/provide.go on lines 94..109
      xmetrics/xmetricshttp/provide.go on lines 111..126

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

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

      func ProvideHandlerDurationHistogram(o prometheus.HistogramOpts, l *ServerLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (HandlerDuration, error) {
                  h, err := f.NewHistogramVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 10..25
      xmetrics/xmetricshttp/provide.go on lines 44..59
      xmetrics/xmetricshttp/provide.go on lines 77..92
      xmetrics/xmetricshttp/provide.go on lines 94..109
      xmetrics/xmetricshttp/provide.go on lines 111..126

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

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

      func ProvideHandlerDurationSummary(o prometheus.SummaryOpts, l *ServerLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (HandlerDuration, error) {
                  s, err := f.NewSummaryVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 10..25
      xmetrics/xmetricshttp/provide.go on lines 27..42
      xmetrics/xmetricshttp/provide.go on lines 77..92
      xmetrics/xmetricshttp/provide.go on lines 94..109
      xmetrics/xmetricshttp/provide.go on lines 111..126

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

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

      func ProvideRoundTripperDurationHistogram(o prometheus.HistogramOpts, l *ClientLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (RoundTripperDuration, error) {
                  h, err := f.NewHistogramVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 10..25
      xmetrics/xmetricshttp/provide.go on lines 27..42
      xmetrics/xmetricshttp/provide.go on lines 44..59
      xmetrics/xmetricshttp/provide.go on lines 77..92
      xmetrics/xmetricshttp/provide.go on lines 111..126

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

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

      func ProvideRoundTripperDurationSummary(o prometheus.SummaryOpts, l *ClientLabellers) fx.Annotated {
          return fx.Annotated{
              Name: o.Name,
              Target: func(f xmetrics.Factory) (RoundTripperDuration, error) {
                  s, err := f.NewSummaryVec(o, l.LabelNames())
      Severity: Major
      Found in xmetrics/xmetricshttp/provide.go and 5 other locations - About 1 hr to fix
      xmetrics/xmetricshttp/provide.go on lines 10..25
      xmetrics/xmetricshttp/provide.go on lines 27..42
      xmetrics/xmetricshttp/provide.go on lines 44..59
      xmetrics/xmetricshttp/provide.go on lines 77..92
      xmetrics/xmetricshttp/provide.go on lines 94..109

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

      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

      Function NewRequestBuilders has 55 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func NewRequestBuilders(o Options) (RequestBuilders, error) {
          var rb RequestBuilders
          for name, value := range o.Claims {
              if len(value.Header) > 0 || len(value.Parameter) > 0 {
                  if len(value.Variable) > 0 {
      Severity: Minor
      Found in token/transport.go - About 1 hr to fix

        Function main has 53 lines of code (exceeds 50 allowed). Consider refactoring.
        Open

        func main() {
            app := fx.New(
                xlog.Logger(),
                config.CommandLine{Name: applicationName}.Provide(setupFlagSet),
                provideMetrics(),
        Severity: Minor
        Found in main.go - About 1 hr to fix

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

          func ProvideHandlerInFlight(o prometheus.GaugeOpts) fx.Annotated {
              return fx.Annotated{
                  Name: o.Name,
                  Target: func(f xmetrics.Factory) (HandlerInFlight, error) {
                      g, err := f.NewGaugeVec(o, nil)
          Severity: Major
          Found in xmetrics/xmetricshttp/provide.go and 1 other location - About 1 hr to fix
          xmetrics/xmetricshttp/provide.go on lines 128..142

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

          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 ProvideRoundTripperInFlight(o prometheus.GaugeOpts) fx.Annotated {
              return fx.Annotated{
                  Name: o.Name,
                  Target: func(f xmetrics.Factory) (RoundTripperInFlight, error) {
                      g, err := f.NewGaugeVec(o, nil)
          Severity: Major
          Found in xmetrics/xmetricshttp/provide.go and 1 other location - About 1 hr to fix
          xmetrics/xmetricshttp/provide.go on lines 61..75

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

          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