Skip to content

Commit fe7176d

Browse files
slagiewkatargos
authored andcommitted
lib: do not modify prototype deprecated asyncResource (encore)
Previous attempt has missed one argument (`useEmitSync`), therefore it effectively did not work as intended. This change sets `useEmitSync` to `false` which is equivalent to previous behaviour of `undefined` and sets `modifyPrototype` to `false` as expected. PR-URL: #59518 Refs: #58218 Refs: #59195 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent 4e02ea1 commit fe7176d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/async_hooks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ class AsyncResource {
262262
enumerable: true,
263263
get: deprecate(function() {
264264
return self;
265-
}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false),
265+
}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false, false),
266266
set: deprecate(function(val) {
267267
self = val;
268-
}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false),
268+
}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false, false),
269269
},
270270
});
271271
return bound;

0 commit comments

Comments
 (0)