Skip to content
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

Support for multiple drones in Unity #3128

Merged
merged 15 commits into from
Sep 9, 2021
Prev Previous commit
Next Next commit
start thread per vehicle
  • Loading branch information
ykeuter committed Nov 4, 2020
commit aae7f5446b431a68e3da0d9c350ad5c7d572db24
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void SimModeBase::startApiServer()
api_server_ = createApiServer();
#endif
try {
api_server_->start(false, 4); //TODO: set thread for vehicle count
api_server_->start(false, vehicle_sim_apis_.size() + 4); //TODO: set thread for vehicle count
}
catch (std::exception& ex) {
PrintLogMessage("Cannot start RpcLib Server", ex.what(), "", ErrorLogSeverity::Error);
Expand Down