mirror of
https://github.com/matrix-construct/construct
synced 2025-01-13 08:23:56 +01:00
construct: Increase matrix context stack size.
This commit is contained in:
parent
a08b409929
commit
c84a211b4c
1 changed files with 3 additions and 1 deletions
|
@ -270,8 +270,10 @@ noexcept try
|
|||
// and not taken the second time.
|
||||
if(level == ircd::run::level::LOAD && !context && !nomatrix)
|
||||
{
|
||||
using namespace ircd::util;
|
||||
|
||||
// 3 Launch the homeserver context (asynchronous).
|
||||
context = { "matrix", ircd::context::POST, homeserver };
|
||||
context = { "matrix", 1_MiB, ircd::context::POST, homeserver };
|
||||
|
||||
// 4 Yield until the homeserver function notifies `start`; waiting
|
||||
// here prevents ircd::main() from entering runlevel RUN.
|
||||
|
|
Loading…
Reference in a new issue