I am using the Spring Admin spring-batch-admin-sample-1.0.0.M2.war. It uses 2.1.0.M4 version of batch core and batch infrastructure jars.

I am uploading a jobs file which has jobs with partitions configured.The grid size is always getting picked up as 6 irrespective of the value provided in the XML file. It looks like a bug is already raised for this issue(BATCH-1489). I am not sure in which version of Spring batch this issue got resolved.

Here is my job configuration:

<job id="abcdPartitionJob" xmlns="http://www.springframework.org/schema/batch">
<step id="abcdPartitionStep.master">
<partition step="abcdPartitionStep" partitioner="UUIDpartitioner">
<handler grid-size="3" task-executor="asyncTaskExecutor"/>
</partition>
</step>
</job>

Can someone please provide the build number which has the fix for this issue?