-
Notifications
You must be signed in to change notification settings - Fork 143
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
ListenUnixgram runtime error #26
Comments
server.go:288 is actually a close brace, and the source of the exception is within |
without using gopkg.in, here is the new error message:
|
With unix datagrams, apparently the address can be null. Use an empty string as the address in this case. Fixes mcuadros#26 Signed-off-by: Alex Bligh <alex@alex.org.uk>
Thanks for the report. I think I have fixed this (my fault) on this branch: You can try the fix locally with this patch: If you confirm it fixes this issue then I will send a pull request. |
It works perfectly, thanks! |
Thanks. Pull Request #27 generated. |
I'm trying to receive logs from nginx using unix sockets, but when nginx sends the first message, nothing happens, on the second message, the program crashes.
Here is my code:
ListenUDP works though
The text was updated successfully, but these errors were encountered: