Skip to content

Commit

Permalink
#29478 Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jgambarios committed Aug 27, 2024
1 parent 9ee0e42 commit 878117f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class JobQueueAPIImpl implements JobQueueAPI {
private final Map<String, RetryStrategy> retryStrategies;
private final RetryStrategy defaultRetryStrategy;

static final int defaultThreadPoolSize = Config.getIntProperty(
static final int DEFAULT_THREAD_POOL_SIZE = Config.getIntProperty(
"JOB_QUEUE_THREAD_POOL_SIZE", 10
);

Expand All @@ -89,7 +89,7 @@ public class JobQueueAPIImpl implements JobQueueAPI {
*/
public JobQueueAPIImpl() {
// TODO: Use a job queue implementation
this(null, defaultThreadPoolSize);
this(null, DEFAULT_THREAD_POOL_SIZE);
}

/**
Expand Down

0 comments on commit 878117f

Please sign in to comment.