Skip to content

Commit

Permalink
Fix failing linter
Browse files Browse the repository at this point in the history
Signed-off-by: nyagamunene <[email protected]>
  • Loading branch information
nyagamunene committed Oct 3, 2024
1 parent a401a5d commit 4156d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing/certs.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (tm *tracingMiddleware) GenerateCRL(ctx context.Context, caType certs.CertT
return tm.svc.GenerateCRL(ctx, caType)
}

func (tm *tracingMiddleware) GetSigningCA(ctx context.Context,token string) (certs.Certificate, error) {
func (tm *tracingMiddleware) GetSigningCA(ctx context.Context, token string) (certs.Certificate, error) {
ctx, span := tm.tracer.Start(ctx, "get_signing_ca")
defer span.End()
return tm.svc.GetSigningCA(ctx, token)
Expand Down

0 comments on commit 4156d79

Please sign in to comment.