Skip to content

Commit

Permalink
Update Kotlin to 1.3.72
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed May 4, 2020
1 parent 6e0bcbf commit 85451e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import java.util.Date
plugins {
application
jacoco
kotlin("jvm") version "1.3.61"
kotlin("jvm") version "1.3.72"
}

buildscript {
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import java.net.NetworkInterface
import java.net.SocketException
import java.util.Enumeration
import java.util.concurrent.CountDownLatch
import kotlin.system.exitProcess

const val ATTR_AGENT_ID = "Agent-ID"
var globalAgentId: String = "localhost"
Expand Down Expand Up @@ -126,8 +127,7 @@ suspend fun main() {
vertx.deployVerticleAwait(Main::class.qualifiedName!!, deploymentOptions)
} catch (e: Exception) {
e.printStackTrace()
System.exit(1)
return
exitProcess(1)
}

// enable graceful shutdown
Expand Down
1 change: 0 additions & 1 deletion src/main/kotlin/runtime/DockerRuntime.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package runtime

import helper.UniqueID
import io.vertx.core.Vertx
import io.vertx.core.json.JsonArray
import io.vertx.core.json.JsonObject
import model.processchain.Argument
Expand Down

0 comments on commit 85451e0

Please sign in to comment.