0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-23 05:13:48 +02:00

construct: Increase matrix context stack size.

This commit is contained in:
Jason Volk 2020-09-22 07:31:52 -07:00
parent a08b409929
commit c84a211b4c

View file

@ -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.