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 6b0d534 commit 5b9b033Copy full SHA for 5b9b033
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