diff options
author | Mark Felder <feld@feld.me> | 2024-07-30 11:11:30 -0400 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-07-30 11:11:30 -0400 |
commit | 49f46220ff670c68363da43db135c5d35229cc5d (patch) | |
tree | 26f49cdf98fb15caef06bc1717195bc77c23f85a /config | |
parent | 4e24445b509df710ffae277796221352977c3f25 (diff) | |
download | pleroma-49f46220ff670c68363da43db135c5d35229cc5d.tar.gz pleroma-49f46220ff670c68363da43db135c5d35229cc5d.zip |
Align Hackney and Gun connection pool timeouts
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/config.exs b/config/config.exs index 4780892f7..d9754d9c8 100644 --- a/config/config.exs +++ b/config/config.exs @@ -858,19 +858,19 @@ config :pleroma, :pools, config :pleroma, :hackney_pools, federation: [ max_connections: 50, - timeout: 150_000 + timeout: 10_000 ], media: [ max_connections: 50, - timeout: 150_000 + timeout: 15_000 ], rich_media: [ max_connections: 50, - timeout: 150_000 + timeout: 15_000 ], upload: [ max_connections: 25, - timeout: 300_000 + timeout: 15_000 ] config :pleroma, :majic_pool, size: 2 |