Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# sbt
lib_managed
project/project
project/metals.sbt
target
/.bsp/sbt.json

Expand Down
7 changes: 5 additions & 2 deletions src/main/resources/reference.conf
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Copyright (c) MOIA GmbH 2017
# Copyright (c) MOIA GmbH 2026

itkit {
process {
await-log-timeout = 10 seconds

initial-memory-allocation-pool = 128m
maximum-memory-allocation-pool = 512m

// -XX:ConcGCThreads: Number of threads concurrent garbage collectors will use.
// The default value varies with the platform on which the JVM is running.
conc-g-c-threads = 2
Expand All @@ -28,4 +31,4 @@ itkit {
loglevel = "INFO"
}
}
}
}
2 changes: 1 addition & 1 deletion src/main/scala/io/moia/itkit/Config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import scala.concurrent.duration.*
final case class Config(process: ProcessConfig = ProcessConfig(), client: ClientConfig = ClientConfig())

final case class ProcessConfig(
awaitLogTimeout: FiniteDuration = 5.seconds,
awaitLogTimeout: FiniteDuration = 10.seconds,
initialMemoryAllocationPool: String = "128m",
maximumMemoryAllocationPool: String = "512m",
concGCThreads: Int = 2,
Expand Down