shm: remove unused member

This commit is contained in:
Alexey Rybalchenko
2021-12-07 12:46:42 +01:00
committed by Dennis Klein
parent 1839f7e8c0
commit 08ba068791
2 changed files with 2 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ class TransportFactory final : public fair::mq::TransportFactory
LOG(error) << "failed configuring context, reason: " << zmq_strerror(errno);
}
fManager = std::make_unique<Manager>(sessionName, deviceId, segmentSize, config);
fManager = std::make_unique<Manager>(sessionName, segmentSize, config);
} catch (boost::interprocess::interprocess_exception& e) {
LOG(error) << "Could not initialize shared memory transport: " << e.what();
throw std::runtime_error(tools::ToString("Could not initialize shared memory transport: ", e.what()));