Skip to content

Commit 6008f78

Browse files
committed
Remove deprecated/unused ThreadPoolType
1 parent b5addca commit 6008f78

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

server/src/main/java/org/elasticsearch/threadpool/ThreadPool.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import org.elasticsearch.common.util.concurrent.ThreadContext;
2828
import org.elasticsearch.core.Nullable;
2929
import org.elasticsearch.core.TimeValue;
30-
import org.elasticsearch.core.UpdateForV9;
3130
import org.elasticsearch.node.Node;
3231
import org.elasticsearch.node.ReportingService;
3332
import org.elasticsearch.telemetry.metric.Instrument;
@@ -120,13 +119,7 @@ public static class Names {
120119
public static final String THREAD_POOL_METRIC_NAME_REJECTED = ".threads.rejected.total";
121120

122121
public enum ThreadPoolType {
123-
@Deprecated(forRemoval = true)
124-
@UpdateForV9(owner = UpdateForV9.Owner.CORE_INFRA) // no longer used, remove in v9
125-
DIRECT("direct"),
126122
FIXED("fixed"),
127-
@Deprecated(forRemoval = true)
128-
@UpdateForV9(owner = UpdateForV9.Owner.CORE_INFRA) // no longer used, remove in v9
129-
FIXED_AUTO_QUEUE_SIZE("fixed_auto_queue_size"),
130123
SCALING("scaling");
131124

132125
private final String type;

0 commit comments

Comments
 (0)