AT-3038: increase default step timeout

GitOrigin-RevId: dc45fcae70676cd7be36e9db300dbff267b186ae
This commit is contained in:
Anastasia Katsman
2025-11-19 17:37:44 +00:00
committed by intellij-monorepo-bot
parent e774d3e04c
commit 73770f92b5
@@ -272,7 +272,7 @@ open class LambdaTestHost(coroutineScope: CoroutineScope) {
assert(ClientId.current == clientId) { "ClientId '${ClientId.current}' should equal $clientId one when after request focus" }
val urls = serializedLambda.classPath.map { File(it).toURI().toURL() }
runLogged(serializedLambda.stepName, 1.minutes) {
runLogged(serializedLambda.stepName, 10.minutes) {
URLClassLoader(urls.toTypedArray(), testModuleDescriptor?.pluginClassLoader ?: this::class.java.classLoader).use {
SerializedLambdaLoader().load(serializedLambda.serializedDataBase64, classLoader = it, context = ideContext)
.accept(ideContext)