bug: client excpetcs 4 bytes
Build on RHEL9 docker image / build (push) Successful in 3m53s
Build on RHEL8 docker image / build (push) Successful in 5m46s
Run Simulator Tests on local RHEL9 / build (push) Successful in 18m40s
Run Simulator Tests on local RHEL8 / build (push) Successful in 22m8s

This commit is contained in:
2026-07-07 17:24:51 +02:00
parent 0359715be4
commit bb66698b40
@@ -451,7 +451,7 @@ ProcessedResult DetectorServer<DerivedDetectorServer>::get_num_udp_interfaces(
template <typename DerivedDetectorServer>
ProcessedResult DetectorServer<DerivedDetectorServer>::get_detector_type(
ServerInterface &socket) const {
uint8_t detectortype = getDerivedImpl()->get_detector_type();
uint32_t detectortype = getDerivedImpl()->get_detector_type();
return ProcessedResult{
static_cast<ReturnCode>(socket.sendResult(detectortype))};
}