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
When negotiate_unix_fds is enabled on the MessageBus, the library starts leaking file descriptors.
This happens for example when an unhandled message is received, or if the message is handled by any of the builtin handlers which are not aware of file descriptor passing. The only way to avoid the leaks seems to be installing a custom message handler, which handles messages that need file descriptors, and close all file descriptors in message.unix_fds otherwise, so that they never get to the default handlers.
The text was updated successfully, but these errors were encountered:
When
negotiate_unix_fds
is enabled on theMessageBus
, the library starts leaking file descriptors.This happens for example when an unhandled message is received, or if the message is handled by any of the builtin handlers which are not aware of file descriptor passing. The only way to avoid the leaks seems to be installing a custom message handler, which handles messages that need file descriptors, and close all file descriptors in
message.unix_fds
otherwise, so that they never get to the default handlers.The text was updated successfully, but these errors were encountered: