Skip to content

Commit 354e174

Browse files
Copilotsaeltz
andcommitted
Add missing default values (copied from grollinger:add-missing-default-values)
Co-authored-by: saeltz <3619633+saeltz@users.noreply.github.com> Agent-Logs-Url: https://github.com/moia-oss/itkit-pekko/sessions/826f35b6-fd87-45b2-8b61-9a01166de2ab
1 parent dd7310d commit 354e174

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# sbt
22
lib_managed
33
project/project
4+
project/metals.sbt
45
target
56
/.bsp/sbt.json
67

src/main/resources/reference.conf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# Copyright (c) MOIA GmbH 2017
1+
# Copyright (c) MOIA GmbH 2026
22

33
itkit {
44
process {
55
await-log-timeout = 10 seconds
66

7+
initial-memory-allocation-pool = 128m
8+
maximum-memory-allocation-pool = 512m
9+
710
// -XX:ConcGCThreads: Number of threads concurrent garbage collectors will use.
811
// The default value varies with the platform on which the JVM is running.
912
conc-g-c-threads = 2
@@ -28,4 +31,4 @@ itkit {
2831
loglevel = "INFO"
2932
}
3033
}
31-
}
34+
}

src/main/scala/io/moia/itkit/Config.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import scala.concurrent.duration.*
1010
final case class Config(process: ProcessConfig = ProcessConfig(), client: ClientConfig = ClientConfig())
1111

1212
final case class ProcessConfig(
13-
awaitLogTimeout: FiniteDuration = 5.seconds,
13+
awaitLogTimeout: FiniteDuration = 10.seconds,
1414
initialMemoryAllocationPool: String = "128m",
1515
maximumMemoryAllocationPool: String = "512m",
1616
concGCThreads: Int = 2,

0 commit comments

Comments
 (0)