fix: Sensible value for sink-buffer
authorKai Moritz <kai@juplo.de>
Sun, 25 Feb 2024 20:44:16 +0000 (21:44 +0100)
committerKai Moritz <kai@juplo.de>
Sun, 25 Feb 2024 20:44:16 +0000 (21:44 +0100)
src/main/java/de/juplo/kafka/chat/backend/ChatBackendProperties.java

index cfc296b..c3609a3 100644 (file)
@@ -17,7 +17,7 @@ public class ChatBackendProperties
 {
   private String instanceId = "DEV";
   private String allowedOrigins = "http://localhost:4200";
-  private int chatroomBufferSize = 8;
+  private int chatroomBufferSize = 1024;
   private ServiceType services = ServiceType.inmemory;
   private InMemoryServicesProperties inmemory = new InMemoryServicesProperties();
   private KafkaServicesProperties kafka = new KafkaServicesProperties();