You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of v5.0.0-RC1, the counting methods in various DAOs (like JobInstanceDao#getJobInstanceCount and StepExecutionDao#countStepExecutions) return int instead of long, which is problematic for some DAOs implementations that use long to count records in the databases (MongoDB is such an example).
To prevent data loss while converting long to int, this issue is to change the return type of counting methods in various DAOs from int to long.