Skip to content

Commit

Permalink
Merge pull request #116 from statisticsnorway/change-task-executor
Browse files Browse the repository at this point in the history
Test 'pseudonymize/field' endpoint with BLOCKING TaskExecutor
  • Loading branch information
mallport authored Sep 24, 2024
2 parents c1f89de + d4f22c6 commit 559924d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class PseudoController {
@Operation(summary = "Pseudonymize field", description = "Pseudonymize a field.")
@Produces(MediaType.APPLICATION_JSON)
@Post(value = "/pseudonymize/field", consumes = MediaType.APPLICATION_JSON)
@ExecuteOn(TaskExecutors.IO)
@ExecuteOn(TaskExecutors.BLOCKING)
public HttpResponse<Flowable<byte[]>> pseudonymizeField(
@Schema(implementation = PseudoFieldRequest.class) String request
) {
Expand Down

0 comments on commit 559924d

Please sign in to comment.