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
In boost_socket_info constructor (file swarm/urlfetcher/boost_event_loop.cpp:38) dup() syscall is used without return value checks. If application hits the max open files limit dup() returns -1 and urlfetcher throws boost asio exceptions.
Example:
terminate called after throwing an instance of 'boost::exception_detail::clone_implboost::exception_detail::error_info_injector<boost::system::system_error >'
what(): Bad file descriptor
The text was updated successfully, but these errors were encountered:
In boost_socket_info constructor (file swarm/urlfetcher/boost_event_loop.cpp:38) dup() syscall is used without return value checks. If application hits the max open files limit dup() returns -1 and urlfetcher throws boost asio exceptions.
Example:
terminate called after throwing an instance of 'boost::exception_detail::clone_implboost::exception_detail::error_info_injector<boost::system::system_error >'
what(): Bad file descriptor
The text was updated successfully, but these errors were encountered: