Created by: ryank311
Under high concurrency, we are seeing requests getting mixed up from the proxy server and our other express routes. This is believed to be caused by the fact that this app is using var
to declare all variables, which makes them on the global scope. When we use async and await to process the headers for proxy requests, it causes requests to get mixed up across users.