Michael Wohlfart [http://community.jboss.org/people/mwohlf] created the discussion
"Re: Disabling jBPM 4 startup database schema check" To view the discussion, visit: http://community.jboss.org/message/567453#567453 -------------------------------------------------------------- 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 [http://community.jboss.org/message/567453#567453] Start a new discussion in jBPM at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
