Transaction and JobExecutor

Hi there,

I’ve integrated Camunda into my spring application.
My application is multi-tenant with a shared database and separated schema.
The schema is set by a ThreadLocal variable used by Hibernate.
For Camunda I used the “Single Process Engine With Tenant-Identifiers” technique.
Everything works well except for async task.
When the async task start, the ThreadLocal variable is not set.
I would like to set that variable with the tenant id retrieved from the execution.
Can I override the DefaultJobExecutor to implement this behavior?
Thank you