Skip to content

Commit 0cd575b

Browse files
authored
don't propagate async scope across events (#301)
Refs: nodejs/node#34430
1 parent 3faf438 commit 0cd575b

File tree

4 files changed

+25
-51
lines changed

4 files changed

+25
-51
lines changed

lib/client-pipeline.js

+8-26
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,13 @@ const {
1111
RequestAbortedError
1212
} = require('./errors')
1313
const util = require('./util')
14-
const { AsyncResource } = require('async_hooks')
1514

1615
// TODO: Refactor
1716

1817
const kResume = Symbol('resume')
1918

20-
class PipelineRequest extends AsyncResource {
19+
class PipelineRequest {
2120
constructor (client, opts, callback) {
22-
super('UNDICI_PIPELINE')
23-
2421
if (opts.onInfo && typeof opts.onInfo !== 'function') {
2522
throw new InvalidArgumentError('invalid opts.onInfo')
2623
}
@@ -42,7 +39,7 @@ class PipelineRequest extends AsyncResource {
4239
}
4340

4441
this.callback = null
45-
this.res = this.runInAsyncScope(callback, this, null, {
42+
this.res = callback(null, {
4643
statusCode,
4744
headers,
4845
opaque,
@@ -52,8 +49,7 @@ class PipelineRequest extends AsyncResource {
5249

5350
_onData (chunk) {
5451
const { res } = this
55-
56-
return this.runInAsyncScope(res, null, null, chunk)
52+
return res(null, chunk)
5753
}
5854

5955
_onComplete (trailers) {
@@ -66,12 +62,12 @@ class PipelineRequest extends AsyncResource {
6662

6763
if (res) {
6864
this.res = null
69-
this.runInAsyncScope(res, null, err, null)
65+
res(err, null)
7066
}
7167

7268
if (callback) {
7369
this.callback = null
74-
this.runInAsyncScope(callback, null, err, null)
70+
callback(err, null)
7571
}
7672
}
7773
}
@@ -110,7 +106,7 @@ module.exports = function (client, opts, handler) {
110106
ret.end()
111107
}
112108

113-
request.runInAsyncScope(callback, null, err, null)
109+
callback(err)
114110
}
115111
})
116112

@@ -140,11 +136,7 @@ module.exports = function (client, opts, handler) {
140136
util.destroy(req, err)
141137
util.destroy(res, err)
142138

143-
request.runInAsyncScope(
144-
callback,
145-
null,
146-
err
147-
)
139+
callback(err)
148140
}
149141
}).on('prefinish', () => {
150142
// Node < 15 does not call _final in same tick.
@@ -167,7 +159,6 @@ module.exports = function (client, opts, handler) {
167159
resume
168160
} = data
169161

170-
const request = this
171162
res = new Readable({
172163
autoDestroy: true,
173164
read: resume,
@@ -182,12 +173,7 @@ module.exports = function (client, opts, handler) {
182173
util.destroy(ret, err)
183174
}
184175

185-
request.runInAsyncScope(
186-
callback,
187-
null,
188-
err,
189-
null
190-
)
176+
callback(err)
191177
}
192178
})
193179

@@ -234,10 +220,6 @@ module.exports = function (client, opts, handler) {
234220
}
235221
})
236222

237-
if (typeof body._destroy === 'function') {
238-
body._destroy = this.runInAsyncScope.bind(this, body._destroy, body)
239-
}
240-
241223
return function (err, chunk) {
242224
if (res.destroyed) {
243225
return null

lib/client-request.js

+5-9
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,17 @@ const {
88
const util = require('./util')
99
const { AsyncResource } = require('async_hooks')
1010

11-
const kRequest = Symbol('request')
12-
1311
class RequestResponse extends Readable {
14-
constructor (request, resume) {
12+
constructor (resume) {
1513
super({ autoDestroy: true, read: resume })
16-
17-
this[kRequest] = request
1814
}
1915

2016
_destroy (err, callback) {
2117
if (!err && !this._readableState.endEmitted) {
2218
err = new RequestAbortedError()
2319
}
2420

25-
this[kRequest].runInAsyncScope(callback, null, err, null)
21+
callback(err)
2622
}
2723
}
2824

@@ -58,7 +54,7 @@ class RequestRequest extends AsyncResource {
5854
return
5955
}
6056

61-
const body = new RequestResponse(this, resume)
57+
const body = new RequestResponse(resume)
6258

6359
this.callback = null
6460
this.res = body
@@ -69,7 +65,7 @@ class RequestRequest extends AsyncResource {
6965
_onData (chunk) {
7066
const { res } = this
7167

72-
if (this.runInAsyncScope(res.push, res, chunk)) {
68+
if (res.push(chunk)) {
7369
return true
7470
} else if (!res._readableState.destroyed) {
7571
return false
@@ -85,7 +81,7 @@ class RequestRequest extends AsyncResource {
8581
return
8682
}
8783

88-
this.runInAsyncScope(res.push, res, null)
84+
res.push(null)
8985
}
9086

9187
_onError (err) {

lib/client-stream.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,16 @@ class StreamRequest extends AsyncResource {
7575
}
7676

7777
this.callback = null
78-
callback(err, err ? null : { opaque, trailers })
78+
this.runInAsyncScope(callback, null, err, err ? null : { opaque, trailers })
7979
})
8080

81-
if (typeof res._destroy === 'function') {
82-
res._destroy = this.runInAsyncScope.bind(this, res._destroy, res)
83-
}
84-
8581
this.res = res
8682
}
8783

8884
_onData (chunk) {
8985
const { res } = this
9086

91-
if (this.runInAsyncScope(res.write, res, chunk)) {
87+
if (res.write(chunk)) {
9288
return true
9389
} else if (!util.isDestroyed(res)) {
9490
return false
@@ -105,7 +101,7 @@ class StreamRequest extends AsyncResource {
105101
}
106102

107103
this.trailers = trailers || {}
108-
this.runInAsyncScope(res.end, res)
104+
res.end()
109105
}
110106

111107
_onError (err) {

test/async_hooks.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ test('async hooks', (t) => {
6868
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
6969

7070
body.once('data', () => {
71-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
71+
t.pass()
7272
body.resume()
7373
})
7474

7575
body.on('end', () => {
76-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
76+
t.pass()
7777
})
7878
})
7979
})
@@ -90,12 +90,12 @@ test('async hooks', (t) => {
9090
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
9191

9292
body.once('data', () => {
93-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
93+
t.pass()
9494
body.resume()
9595
})
9696

9797
body.on('end', () => {
98-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
98+
t.pass()
9999
})
100100
})
101101
})
@@ -112,12 +112,12 @@ test('async hooks', (t) => {
112112
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
113113

114114
body.once('data', () => {
115-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
115+
t.pass()
116116
body.resume()
117117
})
118118

119119
body.on('end', () => {
120-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world' })
120+
t.pass()
121121
})
122122
})
123123
})
@@ -207,10 +207,10 @@ test('async hooks error and close', (t) => {
207207
client.request({ path: '/', method: 'GET' }, (err, data) => {
208208
t.error(err)
209209
data.body.on('error', () => {
210-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
210+
t.pass()
211211
})
212212
data.body.on('close', () => {
213-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
213+
t.pass()
214214
})
215215
})
216216
})
@@ -236,7 +236,7 @@ test('async hooks pipeline close', (t) => {
236236
return body
237237
})
238238
.on('close', () => {
239-
t.strictDeepEqual(getCurrentTransaction(), { hello: 'world2' })
239+
t.pass()
240240
})
241241
.on('error', (err) => {
242242
t.ok(err)

0 commit comments

Comments
 (0)