We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46dc734 commit 40e5303Copy full SHA for 40e5303
x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/ilm/action/TransportRetryAction.java
@@ -80,7 +80,7 @@ protected void masterOperation(
80
submitUnbatchedTask("ilm-re-run", new AckedClusterStateUpdateTask(request, listener) {
81
@Override
82
public ClusterState execute(ClusterState currentState) {
83
- final var project = state.metadata().getProject(projectState.projectId());
+ final var project = currentState.metadata().getProject(projectState.projectId());
84
final var updatedProject = indexLifecycleService.moveIndicesToPreviouslyFailedStep(project, request.indices());
85
return ClusterState.builder(currentState).putProjectMetadata(updatedProject).build();
86
}
0 commit comments