Loading dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ExecutorService.java +3 −1 Original line number Diff line number Diff line Loading @@ -551,6 +551,8 @@ public class ExecutorService extends BaseService{ command.setCommandParam(JSONUtils.toJson(cmdParam)); return processDao.createCommand(command); } return 0; } /** Loading dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/DateInterval.java +9 −6 Original line number Diff line number Diff line Loading @@ -35,12 +35,15 @@ public class DateInterval { @Override public boolean equals(Object obj) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DateInterval that = (DateInterval) o; if (obj == null || getClass() != obj.getClass()) { return false; } else if (this == obj) { return true; } else { DateInterval that = (DateInterval) obj; return startTime.equals(that.startTime) && endTime.equals(that.endTime); } } public Date getStartTime() { Loading Loading
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/ExecutorService.java +3 −1 Original line number Diff line number Diff line Loading @@ -551,6 +551,8 @@ public class ExecutorService extends BaseService{ command.setCommandParam(JSONUtils.toJson(cmdParam)); return processDao.createCommand(command); } return 0; } /** Loading
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/DateInterval.java +9 −6 Original line number Diff line number Diff line Loading @@ -35,12 +35,15 @@ public class DateInterval { @Override public boolean equals(Object obj) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DateInterval that = (DateInterval) o; if (obj == null || getClass() != obj.getClass()) { return false; } else if (this == obj) { return true; } else { DateInterval that = (DateInterval) obj; return startTime.equals(that.startTime) && endTime.equals(that.endTime); } } public Date getStartTime() { Loading