Minor: remove default value of retryOnConnectionError parameter

This commit is contained in:
Alexey Tsvetkov
2016-12-19 18:11:18 +03:00
parent 254d051a1f
commit 434f33f9e9
2 changed files with 4 additions and 4 deletions
@@ -157,7 +157,7 @@ internal class GradleCompilerRunner(private val project: Project) : KotlinCompil
val compilerOut = ByteArrayOutputStream()
val daemonOut = ByteArrayOutputStream()
val res = withDaemon(environment) { daemon, sessionId ->
val res = withDaemon(environment, retryOnConnectionError = true) { daemon, sessionId ->
val remoteCompilerOut = RemoteOutputStreamServer(compilerOut, port)
val remoteDaemonOut = RemoteOutputStreamServer(daemonOut, port)
daemon.serverSideJvmIC(sessionId, argsArray, services, remoteCompilerOut, remoteDaemonOut, null)