Fix some issues #392

Merged
muellerr merged 7 commits from bugfixes_code_review_msg_handling into develop 2023-02-21 11:40:52 +01:00
50 changed files with 2445 additions and 3346 deletions
Showing only changes of commit 9a9574369a - Show all commits

View File

@ -44,8 +44,11 @@ ReturnValue_t VirtualChannel::performOperation() {
if (linkIsUp) { if (linkIsUp) {
result = ptme->writeToVc(vcId, data, size); result = ptme->writeToVc(vcId, data, size);
} }
tmStore->deleteData(storeId); tmStore->deleteData(storeId);
if (result != returnvalue::OK) {
return result;
}
count++; count++;
if(count == 500) { if(count == 500) {
sif::error << "VirtualChannel: Possible message storm detected" << std::endl; sif::error << "VirtualChannel: Possible message storm detected" << std::endl;