diff options
author | 2023-07-07 11:34:12 +0200 | |
---|---|---|
committer | 2023-07-07 11:34:12 +0200 | |
commit | e70bf8a6c82e3d5c943550b364fc6f8120f6f07e (patch) | |
tree | f408ccff2e6f2451bf95ee9a5d96e5b678d686d5 /internal/config/defaults.go | |
parent | [chore/performance] Remove remaining 'whereEmptyOrNull' funcs (#1946) (diff) | |
download | gotosocial-e70bf8a6c82e3d5c943550b364fc6f8120f6f07e.tar.xz |
[chore/bugfix] Domain block tidying up, Implement first pass of `207 Multi-Status` (#1886)
* [chore/refactor] update domain block processing
* expose domain block import errors a lil better
* move/remove unused query keys
Diffstat (limited to 'internal/config/defaults.go')
-rw-r--r-- | internal/config/defaults.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/config/defaults.go b/internal/config/defaults.go index c11f436d6..1cb53c8e2 100644 --- a/internal/config/defaults.go +++ b/internal/config/defaults.go @@ -154,6 +154,10 @@ var Defaults = Configuration{ FollowRequestTTL: time.Minute * 30, FollowRequestSweepFreq: time.Minute, + InstanceMaxSize: 2000, + InstanceTTL: time.Minute * 30, + InstanceSweepFreq: time.Minute, + ListMaxSize: 2000, ListTTL: time.Minute * 30, ListSweepFreq: time.Minute, |