0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 07:23:53 +01:00

ircd:Ⓜ️ Fix missing interrupt propagation in some worker base frames.

This commit is contained in:
Jason Volk 2020-11-30 20:34:51 -08:00
parent ff9375a408
commit 4a715c8f0a
2 changed files with 8 additions and 0 deletions

View file

@ -366,6 +366,10 @@ try
assert(request::list.empty());
}
catch(const ctx::interrupted &)
{
throw;
}
catch(const std::exception &e)
{
log::critical

View file

@ -128,6 +128,10 @@ try
}
while(1);
}
catch(const ctx::interrupted &)
{
throw;
}
catch(const std::exception &e)
{
log::critical