fixed fnametostream set
Build on RHEL9 docker image / build (push) Successful in 3m34s
Build on RHEL8 docker image / build (push) Successful in 4m45s
Run Simulator Tests on local RHEL9 / build (push) Successful in 14m39s
Run Simulator Tests on local RHEL8 / build (push) Successful in 18m14s

This commit is contained in:
2026-05-06 10:25:49 +02:00
parent 6a1b0acb93
commit cf156944af
+2 -3
View File
@@ -843,10 +843,9 @@ void Implementation::shutDownUDPSockets() {
}
void Implementation::restreamStop() {
for (const auto &it : dataStreamer) {
std::string fnametostream = (filePath / fileName).string();
std::string fnametostream = (filePath / fileName).string();
for (const auto &it : dataStreamer)
it->RestreamStop(fnametostream);
}
LOG(logINFO) << "Restreaming Dummy Header via ZMQ successful";
}