From 6e94629b658d4a8a53f92c68d2cd346de8b01f61 Mon Sep 17 00:00:00 2001 From: usbharu Date: Mon, 15 Apr 2024 14:52:01 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=83=91=E3=83=A9=E3=83=A1=E3=83=BC?= =?UTF-8?q?=E3=82=BF=E3=83=BC=E3=82=92=E5=BF=98=E3=82=8C=E3=81=A6=E3=81=9F?= =?UTF-8?q?=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dev/usbharu/owl/consumer/StandaloneConsumerConfigLoader.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/consumer/src/main/kotlin/dev/usbharu/owl/consumer/StandaloneConsumerConfigLoader.kt b/consumer/src/main/kotlin/dev/usbharu/owl/consumer/StandaloneConsumerConfigLoader.kt index 0fff623..2ee599c 100644 --- a/consumer/src/main/kotlin/dev/usbharu/owl/consumer/StandaloneConsumerConfigLoader.kt +++ b/consumer/src/main/kotlin/dev/usbharu/owl/consumer/StandaloneConsumerConfigLoader.kt @@ -30,7 +30,8 @@ object StandaloneConsumerConfigLoader { val port = properties.getProperty("port").toInt() val name = properties.getProperty("name") val hostname = properties.getProperty("hostname") + val concurrency = properties.getProperty("concurrency").toInt() - return StandaloneConsumerConfig(address, port, name, hostname) + return StandaloneConsumerConfig(address, port, name, hostname, concurrency) } } \ No newline at end of file