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
onProxyReq: (proxyReq, req, res) => {
try{
//something
}catch(err){
res.send(500);
}
even after sending back 500 to the caller, the proxy still tries to send the request ti the servcer.
What am I doing wrong?