try it like this
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-10-22 02:46:57 +02:00
parent afdd1ee4eb
commit 233b706d29
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 15 additions and 15 deletions

View File

@ -26,12 +26,12 @@ fun Application.module(testing: Boolean = false) {
val uploader = Uploader()
val processResults = ProcessResults()
environment.monitor.subscribe(ApplicationStarted) {
val job = GlobalScope.launch {
delay(3000L)
println("Starting benchmark")
startTime = Instant.now()
while (elapsed < targetTime) {
GlobalScope.launch {
uploader.uploadData(currIter, gson, cachedFile)
}
currIter += 1
currTimeStamp = Instant.now()
timestamps[currIter] = currTimeStamp
@ -40,7 +40,7 @@ fun Application.module(testing: Boolean = false) {
println("Benchmark ended")
processResults.mapToProcess = timestamps
processResults.process()
}
}
}
}