Details
Description
BusinessProcess#getExecutionId() should try to get the execution id form the current execution context (threadLocal)
/** * @see #getExecution() */ @Produces @Named public String getExecutionId() { return associationManager.getExecutionId(); }
Should be something like
/** * @see #getExecution() */ @Produces @Named public String getExecutionId() { Execution e = getExecution(); return e != null ? e.getId() : null; }