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
Error: Unable to open connection to server on socket
sources-combined> Caused by IO error: No such file or directory (os error 2)
My guess is, that the async --start command doesn't ensure the socket file exists when exiting and only creates it shortly after.
If cmd is issued too quickly, it will not find the socket and error out.
A sleep 1 after the start command, seems to resolve the issue.
But this should better not be necessary.
The text was updated successfully, but these errors were encountered:
this happens almost every time for me. tried to async wait for the server to start, but it also fails to connect to the socket before the server comes up.
In a script where I'm doing this:
... I'm sometimes running into this:
My guess is, that the
async --start
command doesn't ensure the socket file exists when exiting and only creates it shortly after.If
cmd
is issued too quickly, it will not find the socket and error out.A
sleep 1
after the start command, seems to resolve the issue.But this should better not be necessary.
The text was updated successfully, but these errors were encountered: