Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Nov 24, 2023
1 parent eeecf00 commit 663d088
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class AsyncConfiguration {
public Executor threadPoolTaskExecutor() {
return new EnhancedQueueExecutor.Builder()
.setThreadFactory(new ThreadFactoryBuilder().setNameFormat("message-subscriber-%d").build())
.setCorePoolSize(2).setMaximumPoolSize(10).setKeepAliveTime(Duration.ofSeconds(60)).build();
.setCorePoolSize(2).setMaximumPoolSize(4).setKeepAliveTime(Duration.ofSeconds(60)).build();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ public interface EdxSagaEndpoint {
@PreAuthorize("hasAuthority('SCOPE_WRITE_ACTIVATION_CODE')")
@PostMapping("onboarding-file")
@ApiResponses(value = {@ApiResponse(responseCode = "201", description = "CREATED"), @ApiResponse(responseCode = "400", description = "BAD REQUEST")})
@Transactional
@Tag(name = "Endpoint to Upload an excel file and convert to json structure.", description = "Endpoint to upload an onboarding CSV file")
@Schema(name = "OnboardingFileUpload", implementation = OnboardingFileUpload.class)
OnboardingFileProcessResponse processOnboardingFile(@Validated @RequestBody OnboardingFileUpload fileUpload);
Expand Down

0 comments on commit 663d088

Please sign in to comment.