Hi,
after update flowable engine from 6.7.1 to 6.7.2, i got following exception, when i try to query processInstances by variable name and value. for example
bpmEngine.runtimeService.createProcessInstanceQuery()
.variableValueEquals("bpm_abc", 'hello').count()
groovy.lang.GroovyRuntimeException:
Ambiguous method overloading for method org.flowable.engine.impl.ProcessInstanceQueryImpl#variableValueEquals.
Cannot resolve which method to invoke for [class java.lang.String, class java.lang.String] due to overlapping prototypes between:
[class java.lang.String, class java.lang.Object]
[class java.lang.Object, class java.lang.String]
it seems like problem from ProcessInstanceQuery , but there is no changes here, right?
ProcessInstanceQuery variableValueEquals(String name, Object value);
ProcessInstanceQuery variableValueEquals(Object value);
before 6.7.2 there is no such exception