You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that the keys in the context map that are set, but never removed. In context.js, _contexts keys are set using namespace._contexts.set(asyncId, namespace.active); and deleted using namespace._contexts.delete(currentUid); where currentUid is the executionAsyncId, not the id passed into the async hook handler.
A sample of one of the crashes observed due to this issue is given below.
It appears that the keys in the context map that are set, but never removed. In context.js, _contexts keys are set using
namespace._contexts.set(asyncId, namespace.active);
and deleted usingnamespace._contexts.delete(currentUid);
where currentUid is the executionAsyncId, not the id passed into the async hook handler.A sample of one of the crashes observed due to this issue is given below.
fix: #10
The text was updated successfully, but these errors were encountered: