Ensure consistent transaction processing in debug mode:

When NDEBUG is undefined (which is typical in debug configurations)
existing code would perform additional checks which could result in
a `tel` error.
This commit is contained in:
seelabs
2017-06-29 08:53:30 -04:00
committed by Nik Bougalis
parent d8313288ad
commit 7abd70356d

View File

@@ -218,7 +218,7 @@ flow (
{
JLOG (j.error())
<< "Strand re-execute check failed. Step: " << i;
return {telFAILED_PROCESSING, std::move (ofrsToRm)};
break;
}
}
}