Skip to content

Commit

Permalink
master: Fix conflicts. #TASK-6219
Browse files Browse the repository at this point in the history
  • Loading branch information
j-coll committed Oct 16, 2024
1 parent 646e7ac commit a028b40
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class OperationIndexStatus extends IndexStatus {

public OperationIndexStatus(String status, String message) {
if (isValid(status)) {
init(status, status, message);
init(status, message);
} else {
throw new IllegalArgumentException("Unknown status " + status);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,8 @@ public void init() throws Exception {
}

public abstract void apply() throws Exception;

@Override
public void close() throws IOException {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private void checkPendingChore(OperationChore operationChore, Project project) t
paramsMap.put(ParamConstants.PROJECT_PARAM, project.getFqn());
catalogManager.getJobManager().submit(studyFqns.get(0), toolId, Enums.Priority.HIGH, paramsMap, null,
generateJobDescription(config, operationChore, attributes), null,
Collections.singletonList(TAG), attributes, token);
Collections.singletonList(TAG), null, null, null, attributes, token);
}
}

Expand Down Expand Up @@ -206,7 +206,7 @@ private void checkPendingChore(OperationChore operationChore, Project project, S
paramsMap.put(ParamConstants.STUDY_PARAM, study.getFqn());
catalogManager.getJobManager().submit(study.getFqn(), toolId, Enums.Priority.HIGH, paramsMap, null,
generateJobDescription(config, operationChore, attributes), null,
Collections.singletonList(TAG), attributes, token);
Collections.singletonList(TAG), null, null, null, attributes, token);
}
}

Expand Down

0 comments on commit a028b40

Please sign in to comment.