feat: support HTTP response compression in api server (#2680)

This commit is contained in:
Bowen Liang
2024-03-05 14:45:22 +08:00
committed by GitHub
parent 38e5952417
commit 552f319b9d
4 changed files with 15 additions and 0 deletions

View File

@@ -293,6 +293,8 @@ class Config:
self.BATCH_UPLOAD_LIMIT = get_env('BATCH_UPLOAD_LIMIT')
self.API_COMPRESSION_ENABLED = get_bool_env('API_COMPRESSION_ENABLED')
class CloudEditionConfig(Config):