Skip to content

Commit e3f1fed

Browse files
Merge branch 'develop' into gh-2680-fix-spark-packages-repo-priority
2 parents 9d4b131 + 9fa78eb commit e3f1fed

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: core/store/src/main/java/uk/gov/gchq/gaffer/store/Store.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,7 @@ private void addCoreOpHandlers() {
10091009
addOperationHandler(GetJobDetails.class, new GetJobDetailsHandler());
10101010
addOperationHandler(GetAllJobDetails.class, new GetAllJobDetailsHandler());
10111011
addOperationHandler(GetJobResults.class, new GetJobResultsHandler());
1012+
addOperationHandler(CancelScheduledJob.class, new CancelScheduledJobHandler());
10121013
}
10131014

10141015
// Output
@@ -1065,7 +1066,6 @@ private void addCoreOpHandlers() {
10651066
addOperationHandler(ToSingletonList.class, new ToSingletonListHandler());
10661067
addOperationHandler(Reduce.class, new ReduceHandler());
10671068
addOperationHandler(Join.class, new JoinHandler());
1068-
addOperationHandler(CancelScheduledJob.class, new CancelScheduledJobHandler());
10691069

10701070
// Context variables
10711071
addOperationHandler(SetVariable.class, new SetVariableHandler());

Diff for: core/store/src/test/java/uk/gov/gchq/gaffer/store/StoreTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ public void shouldReturnAllSupportedOperationsWhenJobTrackerIsDisabled(@Mock fin
651651
ToSingletonList.class,
652652
ForEach.class,
653653
Reduce.class,
654-
CancelScheduledJob.class,
655654

656655
// Function
657656
Filter.class,

0 commit comments

Comments
 (0)