From 7dfb3971c85fdad671ce215a1ca443eb47d8df2a Mon Sep 17 00:00:00 2001 From: Lezek123 Date: Mon, 16 Dec 2024 20:10:27 +0100 Subject: [PATCH] COMMENT_TIP_TIERS env: use single quotes --- .env | 2 +- src/tests/integration/.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env b/.env index a387118da..4842ada32 100644 --- a/.env +++ b/.env @@ -44,7 +44,7 @@ VIDEO_RELEVANCE_VIEWS_TICK=50 # Default channel weight/bias # ] RELEVANCE_WEIGHTS="[1, 0.03, 0.3, 0.5, [7,3], 1]" -COMMENT_TIP_TIERS="{\"SILVER\": 100, \"GOLD\": 500, \"DIAMOND\": 1000}" +COMMENT_TIP_TIERS='{"SILVER": 100, "GOLD": 500, "DIAMOND": 1000}' MAX_CACHED_ENTITIES=5000 APP_PRIVATE_KEY=this-is-not-so-secret-change-it SESSION_EXPIRY_AFTER_INACTIVITY_MINUTES=60 diff --git a/src/tests/integration/.env b/src/tests/integration/.env index 9c2b55fad..ccad60ef4 100644 --- a/src/tests/integration/.env +++ b/src/tests/integration/.env @@ -41,7 +41,7 @@ VIDEO_RELEVANCE_VIEWS_TICK=50 # [joystream creation weight, YT creation weight] # ] RELEVANCE_WEIGHTS="[1, 0.03, 0.3, 0.5, [7,3]]" -COMMENT_TIP_TIERS="{\"SILVER\": 100, \"GOLD\": 500, \"DIAMOND\": 1000}" +COMMENT_TIP_TIERS='{"SILVER": 100, "GOLD": 500, "DIAMOND": 1000}' MAX_CACHED_ENTITIES=1000 APP_PRIVATE_KEY=this-is-not-so-secret-change-it SESSION_EXPIRY_AFTER_INACTIVITY_MINUTES=60