Skip to content

Commit

Permalink
fix(instrumentation-http): do not mutate given headers object for out…
Browse files Browse the repository at this point in the history
…going http requests (#4346)

Fixes: open-telemetry/opentelemetry-js-contrib#1609
  • Loading branch information
trentm committed Dec 6, 2023
1 parent 4daa264 commit 5b0fb7b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ All notable changes to experimental packages in this project will be documented
* fix(instrumentation-fetch): only access navigator if it is defined [#4063](https://github.com/open-telemetry/opentelemetry-js/pull/4063)
* allows for experimental usage of this instrumentation with non-browser runtimes
* fix(instrumentation-http): memory leak when responses are not resumed
* fix(instrumentation-http): Do not mutate given headers object for outgoing http requests. Fixes aws-sdk signing error on retries. [#4346](https://github.com/open-telemetry/opentelemetry-js/pull/4346)

## 0.45.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,10 @@ export class HttpInstrumentation extends InstrumentationBase<Http> {

if (!optionsParsed.headers) {
optionsParsed.headers = {};
} else {
// Make a copy of the headers object to avoid mutating an object the
// caller might have a reference to.
optionsParsed.headers = Object.assign({}, optionsParsed.headers);
}
propagation.inject(requestContext, optionsParsed.headers);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,20 @@ describe('HttpInstrumentation Integration tests', () => {
assertSpan(span, SpanKind.CLIENT, validations);
});

it('should not mutate given headers object when adding propagation headers', async () => {
const spans = memoryExporter.getFinishedSpans();
assert.strictEqual(spans.length, 0);

const headers = { 'x-foo': 'foo' };
const result = await httpRequest.get(
new url.URL(`${protocol}://localhost:${mockServerPort}/?query=test`),
{ headers }
);
assert.deepStrictEqual(headers, { 'x-foo': 'foo' });
assert.ok(result.reqHeaders[DummyPropagation.TRACE_CONTEXT_KEY]);
assert.ok(result.reqHeaders[DummyPropagation.SPAN_CONTEXT_KEY]);
});

it('should create a span for GET requests and add propagation headers with Expect headers', async () => {
let spans = memoryExporter.getFinishedSpans();
assert.strictEqual(spans.length, 0);
Expand Down

0 comments on commit 5b0fb7b

Please sign in to comment.