Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add composite propagator #821

Merged
Prev Previous commit
Next Next commit
Update packages/opentelemetry-core/src/context/propagation/composite.ts
Co-Authored-By: Olivier Albertini <[email protected]>
  • Loading branch information
dyladan and OlivierAlbertini authored Mar 3, 2020
commit 1b8b5b1c95c93664cfa372a7cd1374b8ccb2126e
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class CompositePropagator implements HttpTextFormat {
/**
* Construct a composite propagator from a list of propagators.
*
* @param config Configuration object for composite propagator
* @param [config] Configuration object for composite propagator
*/
constructor(config: CompositePropagatorConfig = {}) {
this._propagators = config.propagators ?? [];
Expand Down