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
Reading the docker docs, it states The path consists of slash-separated components. , which implies that they can't start or end with a slash. The easy solution here is to throw an error in Modem.prototype.dial if the path starts with a slash.
The text was updated successfully, but these errors were encountered:
If a user adds a leading backslash to an image name, it causes an uncatchable DNS error to be thrown. One of
ENOTFOUND
,EAI_AGAIN
orESERVFAIL.
I am working around this currently by catching this globally with
process.on('uncaughtException', ...)
but it's ugly.Here is an MRE:
Reading the docker docs, it states
The path consists of slash-separated components.
, which implies that they can't start or end with a slash. The easy solution here is to throw an error inModem.prototype.dial
if the path starts with a slash.The text was updated successfully, but these errors were encountered: