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 one runtime instance is running, another one can not be started at the same time.
The error message is: terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<hpx::exception> >' what(): bind: Address already in use: HPX(network_error)
This seems to indicate that the runtime is opening a server socket on a specific port and each instance following that tries to do the same on the same port and thus fails.
This issue prevents us to run multiple tests in parallel reliably during development.