diff options
author | lain <lain@soykaf.club> | 2019-06-07 14:28:14 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-06-07 14:28:14 +0200 |
commit | 593b8b1e6a8502cca9bf5559b8bec86f172bbecb (patch) | |
tree | 74017aa11e21f01510999b76c0d1e0caad759ecc /config/config.exs | |
parent | d5330ed12561377e5c464bcc2774ebc692b9ac07 (diff) | |
download | pleroma-593b8b1e6a8502cca9bf5559b8bec86f172bbecb.tar.gz pleroma-593b8b1e6a8502cca9bf5559b8bec86f172bbecb.zip |
Configuration: Skip thread containment by default
In my tests the interaction between thread containment and other restrictions
makes postgresql create some very bad query plans. This caused direct messages
to time out on soykaf, for example.
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index c6bf71fc8..95a0e9972 100644 --- a/config/config.exs +++ b/config/config.exs @@ -244,7 +244,7 @@ config :pleroma, :instance, safe_dm_mentions: false, healthcheck: false, remote_post_retention_days: 90, - skip_thread_containment: false, + skip_thread_containment: true, limit_unauthenticated_to_local_content: true config :pleroma, :app_account_creation, enabled: true, max_requests: 25, interval: 1800 |