liunaijie commented on code in PR #6943:
URL: https://github.com/apache/seatunnel/pull/6943#discussion_r1638073068
##########
seatunnel-engine/seatunnel-engine-client/src/main/java/org/apache/seatunnel/engine/client/job/ClientJobExecutionEnvironment.java:
##########
@@ -67,8 +67,13 @@ public ClientJobExecutionEnvironment(
this.seaTunnelHazelcastClient = seaTunnelHazelcastClient;
this.jobClient = new JobClient(seaTunnelHazelcastClient);
this.seaTunnelConfig = seaTunnelConfig;
- this.jobConfig.setJobContext(
- new JobContext(isStartWithSavePoint ? jobId :
jobClient.getNewJobId()));
+ Long finalJobId;
+ if (isStartWithSavePoint || jobId != null) {
+ finalJobId = jobId;
Review Comment:
@Hisoka-X hi, i relealize a problem, if user pass same job id with the
running jobs, will it has issue?
now i story some status in IMAP by job id. if use same job id, the status
maybe impact?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]