Skip to content

Commit

Permalink
Remove finalise job action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Oct 3, 2018
1 parent 168fd12 commit c097134
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 170 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
import org.elasticsearch.xpack.core.ml.action.DeleteForecastAction;
import org.elasticsearch.xpack.core.ml.action.DeleteJobAction;
import org.elasticsearch.xpack.core.ml.action.DeleteModelSnapshotAction;
import org.elasticsearch.xpack.core.ml.action.FinalizeJobExecutionAction;
import org.elasticsearch.xpack.core.ml.action.FindFileStructureAction;
import org.elasticsearch.xpack.core.ml.action.FlushJobAction;
import org.elasticsearch.xpack.core.ml.action.ForecastJobAction;
Expand Down Expand Up @@ -236,7 +235,6 @@ public List<GenericAction> getClientActions() {
GetRecordsAction.INSTANCE,
PostDataAction.INSTANCE,
CloseJobAction.INSTANCE,
FinalizeJobExecutionAction.INSTANCE,
FlushJobAction.INSTANCE,
ValidateDetectorAction.INSTANCE,
ValidateJobConfigAction.INSTANCE,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
import org.elasticsearch.xpack.core.ml.action.DeleteForecastAction;
import org.elasticsearch.xpack.core.ml.action.DeleteJobAction;
import org.elasticsearch.xpack.core.ml.action.DeleteModelSnapshotAction;
import org.elasticsearch.xpack.core.ml.action.FinalizeJobExecutionAction;
import org.elasticsearch.xpack.core.ml.action.FindFileStructureAction;
import org.elasticsearch.xpack.core.ml.action.FlushJobAction;
import org.elasticsearch.xpack.core.ml.action.ForecastJobAction;
Expand Down Expand Up @@ -120,7 +119,6 @@
import org.elasticsearch.xpack.ml.action.TransportDeleteForecastAction;
import org.elasticsearch.xpack.ml.action.TransportDeleteJobAction;
import org.elasticsearch.xpack.ml.action.TransportDeleteModelSnapshotAction;
import org.elasticsearch.xpack.ml.action.TransportFinalizeJobExecutionAction;
import org.elasticsearch.xpack.ml.action.TransportFindFileStructureAction;
import org.elasticsearch.xpack.ml.action.TransportFlushJobAction;
import org.elasticsearch.xpack.ml.action.TransportForecastJobAction;
Expand Down Expand Up @@ -546,7 +544,6 @@ public List<RestHandler> getRestHandlers(Settings settings, RestController restC
new ActionHandler<>(GetRecordsAction.INSTANCE, TransportGetRecordsAction.class),
new ActionHandler<>(PostDataAction.INSTANCE, TransportPostDataAction.class),
new ActionHandler<>(CloseJobAction.INSTANCE, TransportCloseJobAction.class),
new ActionHandler<>(FinalizeJobExecutionAction.INSTANCE, TransportFinalizeJobExecutionAction.class),
new ActionHandler<>(FlushJobAction.INSTANCE, TransportFlushJobAction.class),
new ActionHandler<>(ValidateDetectorAction.INSTANCE, TransportValidateDetectorAction.class),
new ActionHandler<>(ValidateJobConfigAction.INSTANCE, TransportValidateJobConfigAction.class),
Expand Down

This file was deleted.

0 comments on commit c097134

Please sign in to comment.