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

Ensuring that eal_init failure makes the module to go into error #124

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/NICReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ NICReceiver::do_configure(const data_t& /*args*/)
m_ifaces[interface->get_rx_iface()]->setup_xstats();
} else {
TLOG() << "No available interface with MAC=" << interface->get_rx_mac();
ers::fatal(dunedaq::readoutlibs::InitializationError(
ERS_HERE, "NICReceiver configuration failed due expected but unavailable interface!"));
throw dunedaq::readoutlibs::InitializationError(
ERS_HERE, "NICReceiver configuration failed due expected but unavailable interface!");
}
}

Expand Down
Loading