Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DTStack/DAGScheduleX into feat_ma…
Browse files Browse the repository at this point in the history
…ster_1.1_dazhi
  • Loading branch information
dtdazhi committed Apr 11, 2022
2 parents b3c2a71 + 39c300f commit f826601
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: 'Bug '
name: "[BUG][module] bug title"
about: 发现了一个新bug
title: ''
labels: ''
labels: bug
assignees: ''

---
Expand Down
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/-feature--module--feature-title.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: "[Feature][module] feature title"
about: 一个好的建议
title: ''
labels: feature
assignees: ''

---


Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ public String getCheckpoints(String pluginInfo, JobIdentifier jobIdentifier) {


public JobResult stopJob(JobClient jobClient) throws Exception {
if(jobClient.getEngineTaskId() == null){
if (jobClient.getApplicationId() == null) {
return JobResult.createSuccessResult(jobClient.getJobId());
}
JobIdentifier jobIdentifier = new JobIdentifier(jobClient.getEngineTaskId(), jobClient.getApplicationId(), jobClient.getJobId()
,jobClient.getTenantId(),jobClient.getTaskType(),jobClient.getDeployMode(),jobClient.getUserId(),jobClient.getPluginInfo(),jobClient.getComponentVersion());
, jobClient.getTenantId(), jobClient.getTaskType(), jobClient.getDeployMode(), jobClient.getUserId(), jobClient.getPluginInfo(), jobClient.getComponentVersion());
jobIdentifier.setForceCancel(jobClient.getForceCancel());
checkoutOperator(jobClient.getPluginInfo(), jobIdentifier);

Expand Down

0 comments on commit f826601

Please sign in to comment.