Skip to content

Commit

Permalink
Merge branch 'main' into parallelism-on-test
Browse files Browse the repository at this point in the history
  • Loading branch information
Insomniac2904 authored Oct 29, 2024
2 parents b6ace28 + e327edb commit 540e45f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion examples/hotrod/docker-compose-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
services:
jaeger:
image: ${REGISTRY:-}jaegertracing/jaeger:${JAEGER_VERSION:-latest}
command: ["--feature-gates=-component.UseLocalHostAsDefaultHost"]
command:
- --set=receivers.otlp.protocols.grpc.endpoint="0.0.0.0:4317"
- --set=receivers.otlp.protocols.http.endpoint="0.0.0.0:4318"
ports:
- "16686:16686"
- "4317:4317"
Expand Down
2 changes: 1 addition & 1 deletion plugin/sampling/strategyprovider/static/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (f *Factory) Initialize(_ metrics.Factory, _ storage.SamplingStoreFactory,
return nil
}

// CreateStrategyStore implements samplingstrategy.Factory
// CreateStrategyProvider implements samplingstrategy.Factory
func (f *Factory) CreateStrategyProvider() (samplingstrategy.Provider, samplingstrategy.Aggregator, error) {
s, err := NewProvider(*f.options, f.logger)
if err != nil {
Expand Down

0 comments on commit 540e45f

Please sign in to comment.