From 58b9df756018c0bfa7df3677d39e1335c40021e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 1 Feb 2024 13:34:23 +0100 Subject: [PATCH] fix: update approx. round length to 20 minutes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index abacd0d..51c62d3 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -1,3 +1,3 @@ export const SPARK_VERSION = '1.7.1' export const MAX_CAR_SIZE = 200 * 1024 * 1024 // 200 MB -export const APPROX_ROUND_LENGTH_IN_MS = 60 * 60_000 // 1 hour +export const APPROX_ROUND_LENGTH_IN_MS = 20 * 60_000 // 20 minutes