@@ -133,7 +133,7 @@ public class UIDOperatorVerticle extends AbstractVerticle {
133133 public static final long OPT_OUT_CHECK_CUTOFF_DATE = Instant .parse ("2023-09-01T00:00:00.00Z" ).getEpochSecond ();
134134 private final Handler <Boolean > saltRetrievalResponseHandler ;
135135 private final int allowClockSkewSeconds ;
136- private final WorkerExecutor computeWorkerPool ;
136+ private final WorkerExecutor computeHeavyRequestWorkerPool ;
137137 protected Map <Integer , Set <String >> siteIdToInvalidOriginsAndAppNames = new HashMap <>();
138138 protected boolean keySharingEndpointProvideAppNames ;
139139 protected Instant lastInvalidOriginProcessTime = Instant .now ();
@@ -168,7 +168,7 @@ public UIDOperatorVerticle(IConfigStore configStore,
168168 SecureLinkValidatorService secureLinkValidatorService ,
169169 Handler <Boolean > saltRetrievalResponseHandler ,
170170 UidInstanceIdProvider uidInstanceIdProvider ,
171- WorkerExecutor computeWorkerPool ) {
171+ WorkerExecutor computeHeavyRequestWorkerPool ) {
172172 this .keyManager = keyManager ;
173173 this .secureLinkValidatorService = secureLinkValidatorService ;
174174 try {
@@ -202,7 +202,7 @@ public UIDOperatorVerticle(IConfigStore configStore,
202202 this .identityV3Enabled = config .getBoolean (IdentityV3Prop , false );
203203 this .disableOptoutToken = config .getBoolean (DisableOptoutTokenProp , false );
204204 this .uidInstanceIdProvider = uidInstanceIdProvider ;
205- this .computeWorkerPool = computeWorkerPool ;
205+ this .computeHeavyRequestWorkerPool = computeHeavyRequestWorkerPool ;
206206 this .isAsyncBatchRequestsEnabled = config .getBoolean (EnableAsyncBatchRequestProp , false );
207207 }
208208
@@ -698,14 +698,14 @@ public void handleKeysBidstream(RoutingContext rc) {
698698 }
699699
700700 private Future <Void > handleKeysSharingAsync (RoutingContext rc ) {
701- return computeWorkerPool .executeBlocking (() -> {
701+ return computeHeavyRequestWorkerPool .executeBlocking (() -> {
702702 handleKeysSharing (rc );
703703 return null ;
704704 });
705705 }
706706
707707 private Future <Void > handleKeysBidstreamAsync (RoutingContext rc ) {
708- return computeWorkerPool .executeBlocking (() -> {
708+ return computeHeavyRequestWorkerPool .executeBlocking (() -> {
709709 handleKeysBidstream (rc );
710710 return null ;
711711 });
@@ -1072,7 +1072,7 @@ private Future handleLogoutAsyncV2(RoutingContext rc) {
10721072 }
10731073
10741074 private Future <Void > handleBucketsV2Async (RoutingContext rc ) {
1075- return computeWorkerPool .executeBlocking (() -> {
1075+ return computeHeavyRequestWorkerPool .executeBlocking (() -> {
10761076 handleBucketsV2 (rc );
10771077 return null ;
10781078 });
@@ -1264,7 +1264,7 @@ private boolean validateServiceLink(RoutingContext rc) {
12641264 }
12651265
12661266 private Future <Void > handleIdentityMapV2Async (RoutingContext rc ) {
1267- return computeWorkerPool .executeBlocking (() -> {
1267+ return computeHeavyRequestWorkerPool .executeBlocking (() -> {
12681268 handleIdentityMapV2 (rc );
12691269 return null ;
12701270 });
@@ -1334,7 +1334,7 @@ private InputUtil.InputVal[] getIdentityMapV2Input(RoutingContext rc) {
13341334 }
13351335
13361336 private Future <Void > handleIdentityMapV3Async (RoutingContext rc ) {
1337- return computeWorkerPool .executeBlocking (() -> {
1337+ return computeHeavyRequestWorkerPool .executeBlocking (() -> {
13381338 handleIdentityMapV3 (rc );
13391339 return null ;
13401340 });
0 commit comments