Browse Source

Merge pull request #240 from analysys/branch-1.0.2

fix bug: error command id is 0.
pull/2/head
bao liang 5 years ago committed by GitHub
parent
commit
3efdff3d80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      escheduler-dao/src/main/java/cn/escheduler/dao/model/ErrorCommand.java

1
escheduler-dao/src/main/java/cn/escheduler/dao/model/ErrorCommand.java

@ -102,6 +102,7 @@ public class ErrorCommand {
public ErrorCommand(Command command, String message){
this.id = command.getId();
this.commandType = command.getCommandType();
this.executorId = command.getExecutorId();
this.processDefinitionId = command.getProcessDefinitionId();

Loading…
Cancel
Save