0 Replies Latest reply on Oct 27, 2015 9:08 AM by miguel.angel.garcia

    Two entries in PROCESSINSTACELOG per each process

    miguel.angel.garcia

      Hi,

      I have the same problem as discussed inTwo entries in PROCESSINSTANCELOG per each process but I use 6.1.0.Final version and default builder for my runtime manager:

      My kmodule.xml is like this:

       

      <kmodule xmlns="http://jboss.org/kie/6.0.0/kmodule">
        <kbase name="myKBase" default="true" eventProcessingMode="cloud" equalsBehavior="identity" 
        declarativeAgenda="disabled" scope="javax.enterprise.context.ApplicationScoped" packages="bpm.procesos,bpm.tareas">
          <ksession name="defaultKieSession" type="stateful" default="true" clockType="realtime" scope="javax.enterprise.context.ApplicationScoped">
          <fileLogger file="myStatfullsession.log" threaded="true" interval="1" />
          </ksession>
          <ksession name="defaultStatelessKieSession" type="stateless" default="true" clockType="realtime" scope="javax.enterprise.context.ApplicationScoped">
              <fileLogger file="myStatlessSession.log" threaded="true" interval="1" />
          </ksession>
          
        </kbase>
      </kmodule>
      

       

      My runtime environment definiton is:

                  KieServices kieServices = KieServices.Factory.get();
                  KieContainer kContainer = kieServices.getKieClasspathContainer();
                  KieBase myKBase = kContainer.getKieBase("myKBase");
          environment = RuntimeEnvironmentBuilder.Factory.get()
                      .newDefaultBuilder()
                      .entityManagerFactory(emf)
                      .userGroupCallback(this.userGroupCallback)
                      .knowledgeBase(myKBase)
                      .get();    
      

       

      My process is

      Captura de pantalla de 2015-10-27 13:51:57.png

      I found in log one insert (status=1) and one update (status=2) for the parent process and the same for the subprocess but in this case another insert ocurred with status = 2

       

      Some body know why ?

       

      Thx