Skip to content

Commit d99e953

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent e874a7a commit d99e953

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

server/src/main/java/org/elasticsearch/cluster/NodeUsageStatsForThreadPools.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,9 @@ public String toString() {
7272
* @param averageThreadPoolUtilization Percent of thread pool threads that are in use, averaged over some period of time.
7373
* @param maxThreadPoolQueueLatencyMillis The max time any task has spent in the thread pool queue. Zero if no task is queued.
7474
*/
75-
public record ThreadPoolUsageStats(
76-
int totalThreadPoolThreads,
77-
float averageThreadPoolUtilization,
78-
long maxThreadPoolQueueLatencyMillis
79-
) implements Writeable {
75+
public record ThreadPoolUsageStats(int totalThreadPoolThreads, float averageThreadPoolUtilization, long maxThreadPoolQueueLatencyMillis)
76+
implements
77+
Writeable {
8078

8179
public ThreadPoolUsageStats(StreamInput in) throws IOException {
8280
this(in.readVInt(), in.readFloat(), in.readVLong());

0 commit comments

Comments
 (0)