We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 061d61d commit ea9ff03Copy full SHA for ea9ff03
receiver/jaegerreceiver/trace_receiver.go
@@ -455,7 +455,7 @@ func (jr *jReceiver) startCollector(host component.Host) error {
455
456
nr := mux.NewRouter()
457
nr.HandleFunc("/api/traces", jr.HandleThriftHTTPBatch).Methods(http.MethodPost)
458
- jr.collectorServer = &http.Server{Handler: nr}
+ jr.collectorServer = jr.config.CollectorHTTPSettings.ToServer(nr)
459
jr.goroutines.Add(1)
460
go func() {
461
defer jr.goroutines.Done()
0 commit comments