Skip to content

Commit 6f05b88

Browse files
authored
Merge pull request #283 from sy-c/master
v2.26.1
2 parents ca0b6d0 + 3cf3734 commit 6f05b88

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

doc/releaseNotes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,3 +639,6 @@ This file describes the main feature changes for each readout.exe released versi
639639
## v2.26.0 - 26/07/2024
640640
- Error reporting: fatal error messages logged to operator when there is a state transition error. The first error (if any) that happened is added to the message.
641641
This covers the cases of (among many others): wrong CRU fw version, inconsistent first orbits, no links enabled.
642+
643+
## v2.26.1 - 20/08/2024
644+
- Fixed missing details in "invalid RDH" log messages.

src/ReadoutEquipment.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,12 +953,12 @@ int ReadoutEquipment::processRdh(DataBlockContainerReference& block)
953953
printf("\n");
954954
printf("Page 0x%p + %ld\n%s\n", (void*)baseAddress, pageOffset, errorDescription.c_str());
955955
h.dumpRdh(pageOffset, 1);
956-
errorDescription.clear();
957956
}
958957
statsRdhCheckErr++;
959958
isPageError = 1;
960959
theLog.log(logRdhErrorsToken, "Equipment %d RDH %d @ 0x%X : invalid RDH: %s", id, rdhIndexInPage, (unsigned int)pageOffset, errorDescription.c_str());
961960
// stop on first RDH error (should distinguich valid/invalid block length)
961+
errorDescription.clear();
962962
break;
963963
} else {
964964
statsRdhCheckOk++;

src/ReadoutVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#define READOUT_VERSION "2.26.0"
12+
#define READOUT_VERSION "2.26.1"
1313

0 commit comments

Comments
 (0)