-
Notifications
You must be signed in to change notification settings - Fork 107
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
performance statistics only in debug mode? #12
Comments
The unix socket is meant for usage by external programs (like the tcp socket), so regardless of debug mode, it is intended to be opened. The send() failure is a regression. |
It appears on Linux send(2) cannot write to non-sockets, while it can on FreeBSD/Darwin (where I tested it). Fair enough, use write(2), which should be able to write to both.
Hi, Regards, Matthew. |
thanks! I haven't had the chance to extensively try the rewrites yet, so all feedback is welcome :) |
Good evening,
It looks like there may be some issue with the routing of the performance statistics when not running with debug enabled:
Running relay with debug enabled
Running relay without debug enabled:
I also noticed that a UNIX socket has been opened when not running in debug mode
Cheers,
Matthew.
The text was updated successfully, but these errors were encountered: