linter pass

This commit is contained in:
Joe Kralicky 2024-12-06 04:07:01 +00:00
parent d8abcb979d
commit e26fb04e93
No known key found for this signature in database
GPG key ID: 75C4875F34A9FB79
13 changed files with 104 additions and 102 deletions

View file

@ -77,16 +77,16 @@ func guessProtocol() string {
type noopClient struct{}
// Start implements otlptrace.Client.
func (n noopClient) Start(ctx context.Context) error {
func (n noopClient) Start(context.Context) error {
return nil
}
// Stop implements otlptrace.Client.
func (n noopClient) Stop(ctx context.Context) error {
func (n noopClient) Stop(context.Context) error {
return nil
}
// UploadTraces implements otlptrace.Client.
func (n noopClient) UploadTraces(ctx context.Context, protoSpans []*v1.ResourceSpans) error {
func (n noopClient) UploadTraces(context.Context, []*v1.ResourceSpans) error {
return nil
}