cancel
Showing results for 
Search instead for 
Did you mean: 

Timeout error

partizano
Champ in-the-making
Champ in-the-making
Hi,

I have process, that execute long operation during start. After starting the process and waiting for 90 seconds I got error: "connection closed". Tell please, where I can setup this timeout parameter?

__
Thanks, Alexander
8 REPLIES 8

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
What does the logging say? Probably a database connection timeout

partizano
Champ in-the-making
Champ in-the-making
There are no errors in log-files. I just got response from server:

Server Apache-Coyote/1.1
Content-Length 0
Date Mon, 01 Aug 2011 09:51:59 GMT
Connection close

I create test-process and got the same result. Process is:

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:smileysurprised:mgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:smileysurprised:mgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.activiti.org/test">
  <process id="Temp" name="temp">
    <documentation>Place documentation for the 'temp' process here.</documentation>
    <startEvent id="startevent1" name="Start"></startEvent>
    <userTask id="usertask1" name="User Task" activiti:assignee="kermit"></userTask>
    <endEvent id="endevent1" name="End"></endEvent>
    <sequenceFlow id="flow1" name="" sourceRef="startevent1" targetRef="servicetask1"></sequenceFlow>
    <sequenceFlow id="flow2" name="" sourceRef="usertask1" targetRef="endevent1"></sequenceFlow>
    <serviceTask id="servicetask1" name="Service Task" activiti:class="Temp"></serviceTask>
    <sequenceFlow id="flow3" name="" sourceRef="servicetask1" targetRef="usertask1"></sequenceFlow>
  </process>
</definitions>


public class Temp implements JavaDelegate {

    @Override
    public void execute(DelegateExecution execution) throws Exception {
        int i = 0;
        Random random = new Random();
        while (true){
            i += Math.abs(random.nextInt());
        }
    }
}

Help, please…

__
Alexander

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
Sorry, this is way to little information… how do you start this process? rest? Than it can be an http timeout that you need to configure in your servlet engine.

partizano
Champ in-the-making
Champ in-the-making
I started the process from Activiti Explorer. After 90 seconds I got the following:
[attachment=0]123.JPG[/attachment]

In the Fire bug I can see following request and response:

Request:
Host localhost:8080
User-Agent Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3
Accept-Encoding gzip, deflate
Accept-Charset windows-1251,utf-8;q=0.7,*;q=0.7
Connection keep-alive
X-Requested-With XMLHttpRequest
Content-Type application/json; charset=UTF-8
Referer http://localhost:8080/activiti-explorer/processes
Content-Length 44
Cookie alfLogin=1312198345; JSESSIONID=7741B8EE046E546BDA4C4BEB920090CD; alfUsername2=cmVmZXJlbmNl

Response:
Server Apache-Coyote/1.1
Content-Length 0
Date Mon, 01 Aug 2011 11:47:35 GMT
Connection close

__
Alexander

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
There is a 500 server error, so there must be something in the logging of the server…. If you cannot provide that, we will be unable to help you… again, sorry

partizano
Champ in-the-making
Champ in-the-making
Hi, Ronald! Thanks for the reply.

I don't know why my log don't contains exceptions, although firebug shows 500 server error…
If I start the process using REST-API, it starts fine. If I start the process from Activiti explorer, it raise 500 server error (always after 90 seconds), but it continue to work (!) and after some period of time it starts succesfully! I also don't know, why this happens…

To provide you with more information, I list my catalina.***.log here. Server raise 500 error at 12:03, so I list only this part of log:

02.08.2011 12:03:00 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:00 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:00 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:00 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:00 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:00 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:00 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:00 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:05 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:05 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:05 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:05 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:05 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:05 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:05 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:05 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:10 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:10 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:10 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:10 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:10 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:10 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:10 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:10 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:14 com.myCompany.reference.DBController getPurposeRef
INFO: Finished. Working time = 57 seconds
02.08.2011 12:03:14 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask5'
02.08.2011 12:03:14 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27550] takes transition (servicetask5)–flow68–>(usertask5)
02.08.2011 12:03:14 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27550] executes Activity(usertask5): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:14 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27551] takes transition (parallelgateway1)–flow31–>(servicetask6)
02.08.2011 12:03:14 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27551] executes Activity(servicetask6): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:14 com.myCompany.reference.DBController getValRef
INFO: Started…
02.08.2011 12:03:15 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:15 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:15 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:15 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:15 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:15 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:15 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:15 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:16 com.myCompany.reference.DBController getValRef
INFO: Finished. Working time = 1 seconds
02.08.2011 12:03:17 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask6'
02.08.2011 12:03:17 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27551] takes transition (servicetask6)–flow30–>(usertask6)
02.08.2011 12:03:17 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27551] executes Activity(usertask6): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:17 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27552] takes transition (parallelgateway1)–flow35–>(servicetask7)
02.08.2011 12:03:17 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27552] executes Activity(servicetask7): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:17 com.myCompany.reference.DBController getPeriodRef
INFO: Started…
02.08.2011 12:03:20 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:20 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:20 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:20 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:20 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:20 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:20 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:20 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:23 com.myCompany.reference.DBController getPeriodRef
INFO: Finished. Working time = 5 seconds
02.08.2011 12:03:23 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask7'
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27552] takes transition (servicetask7)–flow36–>(usertask7)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27552] executes Activity(usertask7): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27553] takes transition (parallelgateway1)–flow38–>(servicetask8)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27553] executes Activity(servicetask8): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:23 com.myCompany.reference.DBController getTradeOrgRef
INFO: Started…
02.08.2011 12:03:23 com.myCompany.reference.DBController getTradeOrgRef
INFO: Finished. Working time = 0 seconds
02.08.2011 12:03:23 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask8'
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27553] takes transition (servicetask8)–flow39–>(usertask8)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27553] executes Activity(usertask8): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27554] takes transition (parallelgateway1)–flow43–>(servicetask9)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27554] executes Activity(servicetask9): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:23 com.myCompany.reference.DBController getAssuranceCompanyRef
INFO: Started…
02.08.2011 12:03:23 com.myCompany.reference.DBController getAssuranceCompanyRef
INFO: Finished. Working time = 0 seconds
02.08.2011 12:03:23 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask9'
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27554] takes transition (servicetask9)–flow44–>(usertask9)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27554] executes Activity(usertask9): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27555] takes transition (parallelgateway1)–flow48–>(servicetask10)
02.08.2011 12:03:23 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27555] executes Activity(servicetask10): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:23 com.myCompany.reference.DBController getPaymentTypeRef
INFO: Started…
02.08.2011 12:03:24 com.myCompany.reference.DBController getPaymentTypeRef
INFO: Finished. Working time = 0 seconds
02.08.2011 12:03:24 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask10'
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27555] takes transition (servicetask10)–flow49–>(usertask10)
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27555] executes Activity(usertask10): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27556] takes transition (parallelgateway1)–flow53–>(servicetask11)
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27556] executes Activity(servicetask11): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:24 com.myCompany.reference.DBController getAssuranceKindRef
INFO: Started…
02.08.2011 12:03:24 com.myCompany.reference.DBController getAssuranceKindRef
INFO: Finished. Working time = 0 seconds
02.08.2011 12:03:24 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask11'
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27556] takes transition (servicetask11)–flow54–>(usertask11)
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27556] executes Activity(usertask11): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27557] takes transition (parallelgateway1)–flow61–>(servicetask12)
02.08.2011 12:03:24 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27557] executes Activity(servicetask12): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:24 com.myCompany.reference.DBController getAssuranceContractValRef
INFO: Started…
02.08.2011 12:03:25 com.myCompany.reference.DBController getAssuranceContractValRef
INFO: Finished. Working time = 0 seconds
02.08.2011 12:03:25 org.activiti.engine.impl.bpmn.behavior.BpmnActivityBehavior performOutgoingBehavior
FINE: Leaving activity 'servicetask12'
02.08.2011 12:03:25 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27557] takes transition (servicetask12)–flow60–>(usertask12)
02.08.2011 12:03:25 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27557] executes Activity(usertask12): org.activiti.engine.impl.bpmn.behavior.UserTaskActivityBehavior
02.08.2011 12:03:25 org.activiti.engine.impl.pvm.runtime.AtomicOperationTransitionNotifyListenerTake execute
FINE: ConcurrentExecution[27558] takes transition (parallelgateway1)–flow63–>(servicetask13)
02.08.2011 12:03:25 org.activiti.engine.impl.pvm.runtime.AtomicOperationActivityExecute execute
FINE: ConcurrentExecution[27558] executes Activity(servicetask13): org.activiti.engine.impl.bpmn.helper.ClassDelegate
02.08.2011 12:03:25 com.myCompany.reference.DBController getRatesReference
INFO: Started…
02.08.2011 12:03:25 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:25 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:25 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:25 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:25 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:25 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:25 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:25 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:30 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:30 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:30 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:30 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:30 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:30 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:30 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:30 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:35 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:35 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:35 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:35 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:35 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:35 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:35 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:35 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:40 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:40 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:40 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:40 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:40 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:40 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:40 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:40 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:45 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:45 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:45 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:45 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:45 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:45 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:45 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:45 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:50 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:50 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:50 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:50 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:50 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:50 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:50 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:50 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis
02.08.2011 12:03:55 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread woke up
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting AcquireJobsCmd ——————————————————–
02.08.2011 12:03:55 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:55 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — AcquireJobsCmd finished ——————————————————–
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — starting GetUnlockedTimersByDuedateCmd ——————————————————–
02.08.2011 12:03:55 org.activiti.engine.impl.db.DbSqlSession flush
FINE: flush summary:
02.08.2011 12:03:55 org.activiti.engine.impl.db.DbSqlSession flush
FINE: now executing flush…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committing…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: committing the ibatis sql session…
02.08.2011 12:03:55 org.activiti.engine.impl.cfg.standalone.StandaloneMybatisTransactionContext commit
FINE: firing event committed…
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE: — GetUnlockedTimersByDuedateCmd finished ——————————————————–
02.08.2011 12:03:55 org.activiti.engine.impl.interceptor.LogInterceptor execute
FINE:                                                                                                    
02.08.2011 12:03:55 org.activiti.engine.impl.jobexecutor.JobAcquisitionThread run
FINE: job acquisition thread sleeping for 5000 millis

If you have any idea, why this happens, let me know, please. Thanks.

__
Alexander

jbarrez
Star Contributor
Star Contributor
How long is your logic supposed to execute?

As Ronald said, it is probably related to a database timeout setting.

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
Or maybe a http timeout