Ido Flax
06/21/2023, 4:07 PMclass ApplicationIntegrationTest : FunSpec() {
init {
val image: DockerImageName =
if (System.getProperty("os.arch") == "aarch64") DockerImageName.parse("niciqy/cp-kafka-arm64:7.0.1")
.asCompatibleSubstituteFor("confluentinc/cp-kafka")
else DockerImageName.parse("confluentinc/cp-kafka:6.2.1")
val kafka = install(ContainerExtension(KafkaContainer(image), mode = ContainerLifecycleMode.Project))
...
But i’m getting a stcakoverflow error:
Test failed
java.lang.StackOverflowError
at io.kotest.extensions.testcontainers.ContainerExtension.beforeSpec(ContainerExtension.kt:97)
It seems there’s a recursive call here with no escape…
Any ideas?Emil Kantis
06/21/2023, 6:50 PMIdo Flax
06/22/2023, 7:34 AMLeoColman
06/22/2023, 11:59 PMLeoColman
06/23/2023, 12:00 AMLeoColman
06/23/2023, 12:12 AMLeoColman
06/23/2023, 12:16 AMLeoColman
06/23/2023, 12:22 AM