Data entry app not loading

For those having the same problem. As @tzemp was mentioning the fix is not yet included in 2.39.2. The problem comes from the code:

Date lastUpdated = DateUtils.max( Set.of(
            identifiableObjectManager.getLastUpdated( DataElement.class ),
            identifiableObjectManager.getLastUpdated( OptionSet.class ),
            identifiableObjectManager.getLastUpdated( Indicator.class ),
            identifiableObjectManager.getLastUpdated( DataSet.class ),
            identifiableObjectManager.getLastUpdated( CategoryCombo.class ),
            identifiableObjectManager.getLastUpdated( Category.class ),
            identifiableObjectManager.getLastUpdated( CategoryOption.class ) ) );

In my case, I didn’t have optionSet in the system and therefore it was crashing. You can quickly verify all those tables via the Maintenance App or directly on the database and populate with whatever to get going until the fix.

1 Like