consumer #2

Merged
usbharu merged 10 commits from consumer into master 2024-04-30 09:26:10 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 6e94629b65 - Show all commits

View File

@ -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)
}
}