We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0047c commit cdb610cCopy full SHA for cdb610c
Framework/Core/src/DataRelayer.cxx
@@ -1055,7 +1055,7 @@ void DataRelayer::sendContextState()
1055
char* buffer = relayerSlotState + written;
1056
for (size_t ci = 0; ci < mTimesliceIndex.size(); ++ci) {
1057
for (size_t si = 0; si < mDistinctRoutesIndex.size(); ++si) {
1058
- int index = si * mTimesliceIndex.size() + ci;
+ int index = ci * mDistinctRoutesIndex.size() + si;
1059
int value = static_cast<int>(mCachedStateMetrics[index]);
1060
buffer[si] = value + '0';
1061
// Anything which is done is actually already empty,
0 commit comments