From afdd1ee4ebc12c7a416c9856e8c0af5c55f0a26f Mon Sep 17 00:00:00 2001 From: Torma Date: Thu, 22 Oct 2020 02:41:27 +0200 Subject: [PATCH] now we process hard --- src/Application.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.kt b/src/Application.kt index 3e3497a..d3d8345 100644 --- a/src/Application.kt +++ b/src/Application.kt @@ -31,7 +31,6 @@ fun Application.module(testing: Boolean = false) { println("Starting benchmark") startTime = Instant.now() while(elapsed < targetTime){ - println(currIter) uploader.uploadData(currIter, gson, cachedFile) currIter+=1 currTimeStamp = Instant.now() @@ -39,6 +38,7 @@ fun Application.module(testing: Boolean = false) { elapsed = Duration.between(startTime, currTimeStamp) } println("Benchmark ended") + processResults.mapToProcess = timestamps processResults.process() } }