From 5f091ef876758aa95065fa24486794b1b82d5c84 Mon Sep 17 00:00:00 2001 From: fflorent Date: Wed, 16 Oct 2024 11:59:23 +0200 Subject: [PATCH] Fix default value --- app/server/lib/ActionHistoryImpl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/lib/ActionHistoryImpl.ts b/app/server/lib/ActionHistoryImpl.ts index dcd2ce54..b1e2c83c 100644 --- a/app/server/lib/ActionHistoryImpl.ts +++ b/app/server/lib/ActionHistoryImpl.ts @@ -29,7 +29,7 @@ const ACTION_HISTORY_MAX_ROWS = section.flag('maxRows').requireInt({ const ACTION_HISTORY_MAX_BYTES = section.flag('maxBytes').requireInt({ envVar: 'GRIST_ACTION_HISTORY_MAX_BYTES', - defaultValue: 1_000_0000_0000, // 1 GB. + defaultValue: 1e9, // 1 GB. minValue: 1, // 1 B. });