-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Can't create listen socket: Address already in use" does not say which port is in use #485
Labels
Comments
jluis
added a commit
to jluis/Statocles
that referenced
this issue
Apr 7, 2016
"Can't create listen socket: Address already in use" is rewriten as "Can't create listen socket on port $port: Address already in use" Signed-off-by: Jose Luis Perez Diez <[email protected]>
Hi |
jluis
added a commit
to jluis/Statocles
that referenced
this issue
Apr 8, 2016
"Can't create listen socket: Address already in use" is rewriten as "Can't create listen socket for (http://*:3000): Address already in use" it changes all "Can't create listen socket:" messages to "Can't create listen socket for ($listen_URL):" Signed-off-by: Jose Luis Perez Diez <[email protected]>
jluis
added a commit
to jluis/Statocles
that referenced
this issue
Apr 11, 2016
"Can't create listen socket: Address already in use" is rewriten as "Can't create listen socket for (http://*:3000): Address already in use" it changes all "Can't create listen socket:" messages to "Can't create listen socket for ($listen_URL):" It has a test in t/command/daemon.t that test the new messge when no port is specified Signed-off-by: Jose Luis Perez Diez <[email protected]>
jluis
added a commit
to jluis/Statocles
that referenced
this issue
Apr 11, 2016
"Can't create listen socket: Address already in use" is rewriten as "Can't create listen socket for (http://*:3000): Address already in use" it changes all "Can't create listen socket:" messages to "Can't create listen socket for ($listen_URL):" It has a test in t/command/daemon.t that test the new messge when no port is specified Signed-off-by: Jose Luis Perez Diez <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When port 3000 is already in use, we get an error:
Can't create listen socket: Address already in use
. But we don't get told which port is already in use, so we don't know how to proceed. Add an error message that explains how to fix this.The text was updated successfully, but these errors were encountered: