Skip to content

Commit

Permalink
branch-2.1: [fix](ForkJoinPool) we should not new a thread pool every…
Browse files Browse the repository at this point in the history
… call #44891 (#44940)

Cherry-picked from #44891
  • Loading branch information
github-actions[bot] authored Dec 4, 2024
1 parent e10f1e9 commit bbd0dcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class TabletHealthProcDir implements ProcDirInterface {

private Env env;

private ForkJoinPool taskPool = new ForkJoinPool();
private static ForkJoinPool taskPool = new ForkJoinPool();

public TabletHealthProcDir(Env env) {
Preconditions.checkNotNull(env);
Expand Down

0 comments on commit bbd0dcb

Please sign in to comment.