Skip to content

Commit

Permalink
avoid std::abort() in addition to the previous fix of ipc_endpoint::s…
Browse files Browse the repository at this point in the history
…etup()
  • Loading branch information
t-horikawa committed Nov 21, 2023
1 parent 3512dad commit 0e6a66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tateyama/endpoint/ipc/bootstrap/server_wires_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ class connection_container
connection_queue_ = managed_shared_memory_->construct<connection_queue>(connection_queue::name)(n, managed_shared_memory_->get_segment_manager());
}
catch(const boost::interprocess::interprocess_exception& ex) {
std::abort(); // FIXME
throw std::runtime_error(ex.what());
}
}

Expand Down

1 comment on commit 0e6a66b

@t-horikawa
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.