Update client_opt.go

This commit is contained in:
sashass1315 2026-02-03 14:46:55 +02:00 committed by GitHub
parent 224692eac6
commit 348e88cb4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,6 +20,7 @@ import (
"net/http"
"github.com/gorilla/websocket"
"go.opentelemetry.io/otel/trace"
)
// ClientOption is a configuration option for the RPC client.
@ -41,6 +42,7 @@ type clientConfig struct {
idgen func() ID
batchItemLimit int
batchResponseLimit int
tracerProvider trace.TracerProvider
}
func (cfg *clientConfig) initHeaders() {