new formatter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-21 19:30:44 +02:00
parent 701f51a334
commit 860bd29ec2
2 changed files with 9 additions and 5 deletions

View File

@ -7,7 +7,7 @@ fun main() = runBlocking{
GlobalScope.launch {
val mqtt = MqttSubscriber()
mqtt.connect()
val waitTime = System.getenv("WAITTIME").toLong() ?: 10000L
val waitTime = System.getenv("WAITTIME").toLong()
delay(waitTime)
val resultMap = mqtt.disconnect()
val resultProcessor = ProcessResults()