We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
req.clone() call doesn't clone request state, changes made by req['key'] = val are not propagated to clone.
req.clone()
req['key'] = val
The solution is calling req._state.copy() in clone
req._state.copy()
clone