* Process should rollback if there are error in process, discover when debugging bug [1631887]
This commit is contained in:
parent
fae6e66070
commit
58459b1de2
|
@ -135,6 +135,9 @@ public abstract class SvrProcess implements ProcessCall
|
|||
// throw new RuntimeException(e);
|
||||
}
|
||||
unlock();
|
||||
//transaction should rollback if there are error in process
|
||||
if ("@Error@".equals(msg))
|
||||
success = false;
|
||||
|
||||
// Parse Variables
|
||||
msg = Msg.parseTranslation(m_ctx, msg);
|
||||
|
|
Loading…
Reference in New Issue