IDEMPIERE-4287 Cache API not thread safe and inconsistent with context parameter (#466)
- Fix PO immutable exception with Workflow Validate process.
This commit is contained in:
parent
60007e07e6
commit
5e977d427c
|
@ -48,7 +48,7 @@ public class WorkflowValidate extends SvrProcess
|
|||
*/
|
||||
protected String doIt () throws Exception
|
||||
{
|
||||
MWorkflow wf = MWorkflow.get (getCtx(), p_AD_Worlflow_ID);
|
||||
MWorkflow wf = new MWorkflow(getCtx(), p_AD_Worlflow_ID, get_TrxName());
|
||||
if (log.isLoggable(Level.INFO)) log.info("WF=" + wf);
|
||||
|
||||
String msg = wf.validate();
|
||||
|
|
Loading…
Reference in New Issue