From f842e810b450a34275d8d453d5d9431a4e1b882a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 25 Jul 2018 15:11:06 +0200 Subject: [PATCH] Update default config cache --- config/default.yaml | 4 ++-- config/production.yaml.example | 4 +++- config/test.yaml | 6 ++++++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/config/default.yaml b/config/default.yaml index d59425365..bc0530d79 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -57,9 +57,9 @@ log: cache: previews: - size: 1 # Max number of previews you want to cache + size: 500 # Max number of previews you want to cache captions: - size: 1 # Max number of video captions/subtitles you want to cache + size: 500 # Max number of video captions/subtitles you want to cache admin: email: 'admin@example.com' # Your personal email as administrator diff --git a/config/production.yaml.example b/config/production.yaml.example index 98cdd7ca7..d347b0ece 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example @@ -71,7 +71,9 @@ log: cache: previews: - size: 100 # Max number of previews you want to cache + size: 500 # Max number of previews you want to cache + captions: + size: 500 # Max number of video captions/subtitles you want to cache admin: email: 'admin@example.com' diff --git a/config/test.yaml b/config/test.yaml index a4ee9a7b2..ffe736b24 100644 --- a/config/test.yaml +++ b/config/test.yaml @@ -21,6 +21,12 @@ smtp: log: level: 'debug' +cache: + previews: + size: 1 + captions: + size: 1 + signup: enabled: true