use old behavior
continuous-integration/drone/push Build is passing Details

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

View File

@ -26,12 +26,11 @@ fun Application.module(testing: Boolean = false) {
val uploader = Uploader()
val processResults = ProcessResults()
environment.monitor.subscribe(ApplicationStarted) {
val job = GlobalScope.launch {
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 +39,7 @@ fun Application.module(testing: Boolean = false) {
println("Benchmark ended")
processResults.mapToProcess = timestamps
processResults.process()
}
}
}
}