-
Task
-
Resolution: Unresolved
-
L3 - Default
-
None
-
None
-
None
Problem
- The Quarkus Engine Extension logs the following error since @Priority annotations are missing on the camunda-engine-cdi interceptors:
2021-08-23 17:03:57,398 INFO [io.qua.arc.pro.Interceptors] (build-5) The interceptor org.camunda.bpm.engine.cdi.impl.annotation.CompleteTaskInterceptor does not declare any @Priority. It will be assigned a default priority value of 0. 2021-08-23 17:03:57,399 INFO [io.qua.arc.pro.Interceptors] (build-5) The interceptor org.camunda.bpm.engine.cdi.impl.annotation.StartProcessInterceptor does not declare any @Priority. It will be assigned a default priority value of 0.
- The camunda-engine-cdi uses CDI 1.0 so this can only be tackled as soon as we did CAM-13841
Acceptance Criteria (Required on creation):
- CAM-13841 is closed and CDI version of the camunda-engine-cdi module was updated to at least 1.1
- @Priority(0) annotations are added to the following classes:
- org.camunda.bpm.engine.cdi.impl.annotation.CompleteTaskInterceptor
- org.camunda.bpm.engine.cdi.impl.annotation.StartProcessInterceptor