flowable-engine
flowable-engine copied to clipboard
A compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.
#### Check List: * Unit tests: YES * Documentation: NA
 question: we have a db2 server, and some schema. Firstly, I use schema LCAP, the flowable can work. Then ,I use schema DEMO3, the flowable can not work. ...
**Describe the bug** ```ini flowable.async-executor-activate=true flowable.process.async.executor.async-job-acquisition-enabled=true flowable.process.async.executor.timer-job-acquisition-enabled=true ``` ```java @Bean configuration.setAsyncExecutorTenantId(TENANT_ID); ``` The below methods do not use the property `TENANT_ID`. So jobs from all tenants are selected. [MybatisJobDataManager.findJobsToExecute](https://github.com/flowable/flowable-engine/blob/flowable-release-6.6.0/modules/flowable-job-service/src/main/java/org/flowable/job/service/impl/persistence/entity/data/impl/MybatisJobDataManager.java#L62) has...
FlowableEventListener I want to execute the (AbstractFlowableEngineEventListener#taskCreated) after the transaction is committed setOnTransaction(TransactionState.COMMITTED.name()); but taskEntity.getCandidates() throw NullPointException ; public static CommandContext getCommandContext() { Stack stack = getStack(commandContextThreadLocal); if (stack.isEmpty()) {...
自己写了一个任务监听器,里面逻辑大概是这样的:异步执行一个远程http请求并将请求结果写到变量表。在执行的过程中报了一个乐观锁的错误。错误如下:org.flowable.common.engine.api.FlowableOptimisticLockingException: Execution[ id 'a8a2dec8-16f8-11ed-93f0-0242ac120009' ] - activity 'Activity_0zu5ltp' - parent 'a8a2dec2-16f8-11ed-93f0-0242ac120009' was updated by another transaction concurrently。请问这个该怎么避免?
**Describe the bug** In version `6.4.2` and before the startup of Flowable modules could be disabled with the following Spring Boot configuration: ``` flowable: app: enabled: false deploy-resources: false servlet:...
From a certain moment, is impossible deploy the file bar because return the error in title. A part of error code: ` Utilizza il form sottostante per invitare un nuovo...
```text *Timer Start Event* Description A timer start event is used to create process instances at given time. It can be used both for processes that should start only once...
**Describe the bug** When I running the docker image of the flowable ui, error messages are not correctly displayed in the task app. I am using the following command to...
Hi, We are trying to implement multi-tenancy with flowable (Multitenant with singleengine/multischema) using Postgres DB. But when we try to register different tenants we get the below error : lowable.common.engine.impl.db.CommonDbSchemaManager...