We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c688d0 commit 3aaa967Copy full SHA for 3aaa967
connection/connection.go
@@ -183,10 +183,10 @@ func connect(
183
if o.metricsManager != nil {
184
interceptors = append(interceptors, ExtendedCSIMetricsManager{o.metricsManager}.RecordMetricsClientInterceptor)
185
}
186
+ dialOptions = append(dialOptions, grpc.WithChainUnaryInterceptor(interceptors...))
187
if o.enableOtelTracing {
- interceptors = append(interceptors, otelgrpc.UnaryClientInterceptor())
188
+ dialOptions = append(dialOptions, grpc.WithStatsHandler(otelgrpc.NewClientHandler()))
189
- dialOptions = append(dialOptions, grpc.WithChainUnaryInterceptor(interceptors...))
190
191
unixPrefix := "unix://"
192
if strings.HasPrefix(address, "/") {
0 commit comments