Camunda 7.14 - ENGINE-03002 Cannot add TRANSIENT entity

Hi When i migrate to camunda 7.14 i am getting the below when i try to initiate the process. I am invoking the start process instance REST API using the id with the below payload.

{
    "variables": {
        "isReclaimMonitoringTask": {
            "value": true,
            "type": "Boolean"
        }
    }
}
{
    "type": "RestException",
    "message": "Cannot instantiate process definition 779de83f-2ac3-11ed-b857-a029191f87eb: ENGINE-03002 Cannot add TRANSIENT entity with id 'e1acdb2a-2dac-11ed-bfce-a029191f87eb' and type 'class org.camunda.bpm.engine.impl.history.event.HistoricProcessInstanceEventEntity' into cache. An entity with the same id and type is already in state 'TRANSIENT'"
}

I see there is already a forum discussion on the same issue without any resolution. I tried the solution which was mentioned on the below ticket. But still no luck.
https://forum.camunda.io/t/cannot-add-transient-entity-with-id/29578

I am setting the below property on my application.properties file.
camunda.bpm.id-generator=strong

Any help please?

can you upload the process you’re starting to start.
Also can you show the full call you’re using to start the process?