mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 08:12:37 +01:00
ircd:Ⓜ️:events: Use better low watermark to not invalidate checkpoint.
This commit is contained in:
parent
305aa691e7
commit
1901da6fde
1 changed files with 2 additions and 2 deletions
|
@ -146,8 +146,8 @@ ircd::m::events::dump__file(const string_view &filename)
|
|||
{
|
||||
buf,
|
||||
flusher,
|
||||
-1UL, // high watermark
|
||||
size(buf) // low watermark
|
||||
-1UL, // high watermark
|
||||
size(buf) - 64_KiB // low watermark
|
||||
};
|
||||
|
||||
json::stack::array top
|
||||
|
|
Loading…
Reference in a new issue