JBoss Community

Re: Disabling jBPM 4 startup database schema check

created by Michael Wohlfart in jBPM - View the full discussion

Hi Peter,

 

there is a skipDbCheck() method if you somehow get hold of the ConfigurationImpl class, the DB check is fired up in ProcessEngineImpl with the following method:

 

protected void checkDb(ConfigurationImpl configuration) {
    if (configuration.isCheckDb()) {
      userCommandService.execute(new CheckDbCmd());
    }
  }

 

so you might want to patch that or the CheckDbCmd class...

Reply to this message by going to Community

Start a new discussion in jBPM at Community