From 646a84323b97ee8f89b4539cfa0e6984121e6dec Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Mon, 3 Apr 2017 10:22:48 -0700 Subject: [PATCH] =?UTF-8?q?GITHUB-IDEA-77:=20Don=E2=80=99t=20close=20the?= =?UTF-8?q?=20web=20socket.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/cbeust/kobalt-intellij-plugin/issues/77. --- .../com/beust/kobalt/app/remote/GetDependencyGraphHandler.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/app/remote/GetDependencyGraphHandler.kt b/src/main/kotlin/com/beust/kobalt/app/remote/GetDependencyGraphHandler.kt index 4acb5d9c..96e8658c 100644 --- a/src/main/kotlin/com/beust/kobalt/app/remote/GetDependencyGraphHandler.kt +++ b/src/main/kotlin/com/beust/kobalt/app/remote/GetDependencyGraphHandler.kt @@ -122,7 +122,6 @@ class GetDependencyGraphHandler : WebSocketListener { // Respond to the request sendWebsocketCommand(s.remote, RemoteDependencyData.GetDependenciesData.NAME, result, errorMessage = result.errorMessage) - s.close() } override fun onWebSocketText(message: String?) {