From c962f8a7ab0e3c132435fc1b3b18262135e023c6 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 28 Jul 2022 09:46:45 +0800 Subject: [PATCH] fix: default the max pool size to 1 --- .../komga/infrastructure/configuration/KomgaProperties.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komga/src/main/kotlin/org/gotson/komga/infrastructure/configuration/KomgaProperties.kt b/komga/src/main/kotlin/org/gotson/komga/infrastructure/configuration/KomgaProperties.kt index d19768017..bc9763767 100644 --- a/komga/src/main/kotlin/org/gotson/komga/infrastructure/configuration/KomgaProperties.kt +++ b/komga/src/main/kotlin/org/gotson/komga/infrastructure/configuration/KomgaProperties.kt @@ -73,7 +73,7 @@ class KomgaProperties { var batchChunkSize: Int = 1000 @get:Positive - var maxPoolSize: Int = 8 + var maxPoolSize: Int = 1 var journalMode: JournalMode? = null