diff options
author | lain <lain@soykaf.club> | 2019-01-01 14:46:55 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-01-01 14:46:55 +0100 |
commit | 400337b0a78150704de650d62a499464e895816c (patch) | |
tree | 1e98c0f7cc2c4c4fc69625c2c775819651eabccd /config | |
parent | 90e157ef803296989b41d1fbfb5096b39320f75d (diff) | |
download | pleroma-400337b0a78150704de650d62a499464e895816c.tar.gz pleroma-400337b0a78150704de650d62a499464e895816c.zip |
Make Federator options configurable.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 90e3a4aec..d30b33197 100644 --- a/config/config.exs +++ b/config/config.exs @@ -252,6 +252,14 @@ config :pleroma, Pleroma.User, "internal" ] +config :pleroma, Pleroma.Web.Federator, max_jobs: 50 + +config :pleroma, Pleroma.Web.Federator.RetryQueue, + enabled: false, + max_jobs: 20, + initial_timeout: 30, + max_retries: 5 + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env()}.exs" |