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
...
https server started for www.google.com on 54724
https server started for www.google.com on 54726
...
With concurrent requests to www.google.com this semaphore is but the asynchronous callback (that populates sslServers) is outside the lock/sem.
This results in 2+ sslServers created for the same hostname yet only the last is tracked in the dictionary. This also means only the last one is cleaned up upon Proxy.close() resulting in lingering handles...
The text was updated successfully, but these errors were encountered:
node-http-mitm-proxy/lib/proxy.ts
Line 677 in 310a3bc
With concurrent requests to
www.google.com
this semaphore is but the asynchronous callback (that populatessslServers
) is outside the lock/sem.This results in 2+ sslServers created for the same hostname yet only the last is tracked in the dictionary. This also means only the last one is cleaned up upon
Proxy.close()
resulting in lingering handles...The text was updated successfully, but these errors were encountered: