* Process should rollback if there are error in process, discover when debugging bug [1631887]

This commit is contained in:
Heng Sin Low 2007-01-10 03:13:12 +00:00
parent fae6e66070
commit 58459b1de2
1 changed files with 3 additions and 0 deletions

View File

@ -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);