1
0
Fork 0

fix bug in Transaction state

This commit is contained in:
Jan Christoph Uhde 2017-03-30 15:01:22 +02:00
parent 36fb83efae
commit 9619e77e1c
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ Result TransactionState::useCollections(int nestingLevel) {
// process collections in forward order
for (auto& trxCollection : _collections) {
res = trxCollection->use(nestingLevel);
if (res.ok()) {
if (!res.ok()) {
break;
}
}