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
Is your feature request related to a problem? Please describe.
Currently, the generateRequestId method accepts no parameters and generally creates a single id based off of the time and Math.random().
Describe the solution you'd like
The generateRequestId method should accept the ExecutionContext so that the id can be pulled off the request in the case that it's set from a middleware or guard, or if it is sent in from another application in the request header (or similar for other transports)
Feature Request
Is your feature request related to a problem? Please describe.
Currently, the
generateRequestId
method accepts no parameters and generally creates a single id based off of the time andMath.random()
.Describe the solution you'd like
The
generateRequestId
method should accept theExecutionContext
so that the id can be pulled off the request in the case that it's set from a middleware or guard, or if it is sent in from another application in the request header (or similar for other transports)Teachability, Documentation, Adoption, Migration Strategy
Just add to the README that the
generateRequestId
now accepts theExecutionContext
as a parameter.The text was updated successfully, but these errors were encountered: