From a827016117df7449dc8bf4a264e8e449aa89440c Mon Sep 17 00:00:00 2001 From: Bartosz Sypytkowski Date: Tue, 3 Dec 2024 07:59:05 +0100 Subject: [PATCH] fix: set default collab s3 threshold to 8000 in appflowy cloud (#1038) --- src/config/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config.rs b/src/config/config.rs index a7e6a462..17c60cd4 100644 --- a/src/config/config.rs +++ b/src/config/config.rs @@ -252,7 +252,7 @@ pub fn get_configuration() -> Result { .parse()?, edit_state_max_count: get_env_var("APPFLOWY_COLLAB_EDIT_STATE_MAX_COUNT", "100").parse()?, edit_state_max_secs: get_env_var("APPFLOWY_COLLAB_EDIT_STATE_MAX_SECS", "60").parse()?, - s3_collab_threshold: get_env_var("APPFLOWY_COLLAB_S3_THRESHOLD", "60").parse()?, + s3_collab_threshold: get_env_var("APPFLOWY_COLLAB_S3_THRESHOLD", "8000").parse()?, }, published_collab: PublishedCollabSetting { storage_backend: get_env_var("APPFLOWY_PUBLISHED_COLLAB_STORAGE_BACKEND", "postgres")