Disable history level in camunda

This is needed to be done in statandalone xml where the process engine configured and in the database as well.

  1. Disable the history level in standalone.xml in wildfly
<process-engines>
    <process-engine name="default" default="true">
        <datasource>java:jboss/datasources/ProcessEngine</datasource>
        <history-level>none</history-level>
        ---
        ---

2. Disable the history level in database :

In this case, Here VALUE 3 means full. VALUE 0 means none

UPDATE `camunda11`.`ACT_GE_PROPERTY` SET `VALUE_` = '0', `REV_` = '1' WHERE (`NAME_` = 'historyLevel');

Note : If these two values are mismatch it won’t get deployed and will throw an error

#bpmn, #camunda, #wildfly