Skip to content

Commit

Permalink
fix b3
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Oct 22, 2024
1 parent 43ebe82 commit 8e17eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Extension/Propagator/B3/B3MultiPropagatorFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class B3MultiPropagatorFactory implements TextMapPropagatorFactoryInterface

public function create(): TextMapPropagatorInterface
{
return B3MultiPropagator::getInstance();
return B3Propagator::getB3MultiHeaderInstance();
}

public function type(): string
Expand Down
2 changes: 1 addition & 1 deletion src/Extension/Propagator/B3/B3PropagatorFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class B3PropagatorFactory implements TextMapPropagatorFactoryInterface
{
public function create(): TextMapPropagatorInterface
{
return B3SinglePropagator::getInstance();
return B3Propagator::getB3SingleHeaderInstance();
}

public function type(): string
Expand Down

0 comments on commit 8e17eaa

Please sign in to comment.