aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/main/resources/application.properties
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-10-19 11:54:55 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-10-19 11:54:55 +0200
commitbe4c967659e73814dc14d9c144b8ad4156af4aca (patch)
treed07134dbd0c024d72595c7cfb17b5079449b160e /aai-resources/src/main/resources/application.properties
parent53208e359d28bebe8dc5116d295b19dba7010d68 (diff)
Upgrade spring-boot to 2.4
- update spring-boot to latest available 2.4.X release - Content-Type's on GET requests now result in 415 (instead of being ignored) which necessitates changes to the ConfigurationTest Issue-ID: AAI-3667 Change-Id: If6cbce8185b443a79b5e3b32fa3ffede5cabee60 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-resources/src/main/resources/application.properties')
-rw-r--r--aai-resources/src/main/resources/application.properties4
1 files changed, 2 insertions, 2 deletions
diff --git a/aai-resources/src/main/resources/application.properties b/aai-resources/src/main/resources/application.properties
index 3905dd8..66a8e53 100644
--- a/aai-resources/src/main/resources/application.properties
+++ b/aai-resources/src/main/resources/application.properties
@@ -20,9 +20,9 @@ spring.jersey.application-path=${schema.uri.base.path}
spring.profiles.active=production,one-way-ssl,dmaap
#The max number of active threads in this pool
-jetty.threadPool.maxThreads=200
+server.jetty.threads.max=200
#The minimum number of threads always kept alive
-jetty.threadPool.minThreads=8
+server.jetty.threads.min=8
#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
server.tomcat.max-idle-time=60000