Instance ID pattern changed

Engine changed the way of generate ID for process instance. I’m using shared process-engine and spring-boot-starter. Anyone know what probably happened?

image

Hi @regissantana,

the engine can use different ID generators: https://docs.camunda.org/manual/7.11/user-guide/process-engine/id-generator/. Have a look at the configuration for .id-generator : https://docs.camunda.org/manual/7.11/user-guide/spring-boot-integration/configuration/#camunda-engine-properties

It was probably switched by another configration?

Hoe this helps, Ingo

Hi, @Ingo_Richtsmeier.

I wasn’t change any .id-generator. It occured when I was creating a custom process engine. Actually, I resolved it by adding to my spring application.yaml:

camunda:
  bpm:
    id-generator: strong

Thanks.