Lucas-307 opened a new issue #1781:
URL: https://github.com/apache/shardingsphere-elasticjob/issues/1781
## Bug Report
### Which version of ElasticJob did you use?
3.0.0-beta
### Which project did you use? ElasticJob-Lite or ElasticJob-Cloud?
ElasticJob-Lite
### Process
Process1: Create a ScheduleJobBootstrap with corn=0 0 0 1 1 ? 2099,
shardingTotalCount=2; and JobOperateAPI.trigger it.
when this two sharding items executing.
Process2: Create the same job and trigger it again.
### Expected behavior
Process2 do nothing.
### Actual behavior
Process2 also execute one of sharding items.
### Example codes for reproduce this issue (such as a github link).
```java
jobConfig = JobConfiguration.newBuilder(jobId, 2).cron("0 0 0 1 1 ?
2099").jobParameter("xxx").build();
jobBootstrap = new ScheduleJobBootstrap(registryCenter, new
ScalingElasticJob(), jobConfig);
jobBootstrap.schedule();
jobOperateAPI.trigger(jobId);
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]