Move batch identity checks off the common fork join pool

This commit is contained in:
Ehren Kret
2022-06-20 11:07:33 -05:00
parent cc8dda28cc
commit da49db5b9e
3 changed files with 16 additions and 10 deletions

View File

@@ -35,6 +35,7 @@ import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.UUID;
import java.util.concurrent.Executors;
import java.util.stream.Stream;
import javax.ws.rs.client.Entity;
import javax.ws.rs.core.MediaType;
@@ -148,7 +149,8 @@ class ProfileControllerTest {
postPolicyGenerator,
policySigner,
"profilesBucket",
zkProfileOperations))
zkProfileOperations,
Executors.newSingleThreadExecutor()))
.build();
@BeforeEach