Merge branch 'feature/jobs' into 'develop'

Job Queue

See merge request pleroma/pleroma!732
This commit is contained in:
kaniini 2019-02-18 19:43:06 +00:00
commit 833161b5d2
16 changed files with 370 additions and 152 deletions

View file

@ -332,14 +332,16 @@ config :pleroma, Pleroma.User,
"web"
]
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
config :pleroma, Pleroma.Jobs,
federator_incoming: [max_jobs: 50],
federator_outgoing: [max_jobs: 50]
# 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"