cancel
Showing results for 
Search instead for 
Did you mean: 

Activiti random behaviour

ravenblackdusk
Champ on-the-rise
Champ on-the-rise

I'm creating a process instance as such:

processInstance = runtimeService.startProcessInstanceByKeyAndTenantId(key, initialParameters, tenantId + (isTest ? TEST_TENANT_SUFFIX : PRODUCTION_TENANT_SUFFIX));

which always returns a processInstance, but sometimes(seemingly randomly) the returned process instance does not exist in the database:

historyService.createHistoricProcessInstanceQuery().processInstanceId(processInstance.getId()).singleResult() == null

runtimeService.createProcessInstanceQuery().processInstanceId(processInstance.getId()).singleResult() == null

I've also logged the mariadb queries and I've noticed that the times that the instance does not exist; no insert queries are logged in the database, so the process instance was not inserted and then deleted.

these problems started appearing after migrating to activiti6

1 ACCEPTED ANSWER

ravenblackdusk
Champ on-the-rise
Champ on-the-rise

After a lot of debugging I discovered that Activiti's command context was being manipulated in my code, which was causing the random behavior.

View answer in original post

3 REPLIES 3

ravenblackdusk
Champ on-the-rise
Champ on-the-rise

Also, I'm using activiti-spring-boot-starter-basic

ravenblackdusk
Champ on-the-rise
Champ on-the-rise

After a lot of debugging I discovered that Activiti's command context was being manipulated in my code, which was causing the random behavior.

ARCO
Champ in-the-making
Champ in-the-making

HI , buddy ,recently i have same problem with you , i was wondering could you share your method how to solve this random behaviour ??