arvo-core 1.0.21 → 1.0.22

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  - Fix a type bug in ArvoEvent creation
42
42
 
43
- ## [1.0.21] - 2024-09-07
43
+ ## [1.0.22] - 2024-09-07
44
44
 
45
45
  - Updated OpenTelemetry propagation and fixed propagation in the event factory
46
46
 
@@ -47,9 +47,6 @@ var getTelemetryCarrier = function (span, activeContext) {
47
47
  tracestate: null,
48
48
  };
49
49
  api_1.propagation.inject(activeContext, carrier);
50
- if (!carrier.traceparent) {
51
- carrier.traceparent = "00-".concat(span.spanContext().traceId, "-").concat(span.spanContext().spanId, "-0").concat(span.spanContext().traceFlags);
52
- }
53
50
  return carrier;
54
51
  };
55
52
  exports.getTelemetryCarrier = getTelemetryCarrier;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "This core package contains all the core classes and components of the Arvo Event Driven System",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {