Hi,
How can i stop the default task in my activiti project? Everytime background running this
C3P0PooledConnectionPoolManager[identityToken->1hge3vv9r1r36ejc15ykklt|4015b06b]-AdminTaskTimer
and some debug statements are printing. how can i stop those?
Hi!
You do cancel process instance with deleteProcessInstance(String processId, String reason). For example:
RuntimeService runtimeService = activitiRule.getRuntimeService();
ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("my-process");
...
runtimeService.deleteProcessInstance(processInstance.getId(), "Cancel forced!");
Regards!