Increase pool size
All checks were successful
Build and push container / Build-Docker-Container (push) Successful in 7m28s

This commit is contained in:
MrLetsplay 2025-02-18 21:55:53 +01:00
parent 34f0b5b5fe
commit a45b809a99
Signed by: mr
SSH Key Fingerprint: SHA256:92jBH80vpXyaZHjaIl47pjRq+Yt7XGTArqQg1V7hSqg

View File

@ -62,8 +62,8 @@ public class VideoBase {
HttpServer server = new HttpServer(HttpServer.newConfigurationBuilder() HttpServer server = new HttpServer(HttpServer.newConfigurationBuilder()
.hostBindAll() .hostBindAll()
.port(6969) .port(6969)
.poolSize(2) .poolSize(16)
.ioWorkers(1) .ioWorkers(2)
.logger(LOGGER) .logger(LOGGER)
// .logger(NOPLogger.NOP_LOGGER) // .logger(NOPLogger.NOP_LOGGER)
.defaultCorsConfiguration(CorsConfiguration.createAllowAll()) .defaultCorsConfiguration(CorsConfiguration.createAllowAll())