Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,9 +512,6 @@ tests:
- class: org.elasticsearch.test.apmintegration.TracesApmIT
method: testApmIntegration
issue: https://github.com/elastic/elasticsearch/issues/129651
- class: org.elasticsearch.snapshots.SnapshotShutdownIT
method: testSnapshotShutdownProgressTracker
issue: https://github.com/elastic/elasticsearch/issues/129752
- class: org.elasticsearch.xpack.security.SecurityRolesMultiProjectIT
method: testUpdatingFileBasedRoleAffectsAllProjects
issue: https://github.com/elastic/elasticsearch/issues/129775
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ private void startNewShardSnapshots(String localNodeId, SnapshotsInProgress.Entr
entry.version(),
entry.startTime()
);
snapshotStatus.updateStatusDescription("shard snapshot enqueuing to start");
startShardSnapshotTaskRunner.enqueueTask(new ActionListener<>() {
@Override
public void onResponse(Releasable releasable) {
Expand All @@ -429,7 +430,6 @@ public void onFailure(Exception e) {
assert false : wrapperException; // impossible
}
});
snapshotStatus.updateStatusDescription("shard snapshot enqueued to start");
}

// apply some backpressure by reserving one SNAPSHOT thread for the startup work
Expand Down