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:
parent
ff9375a408
commit
4a715c8f0a
2 changed files with 8 additions and 0 deletions
|
@ -366,6 +366,10 @@ try
|
|||
|
||||
assert(request::list.empty());
|
||||
}
|
||||
catch(const ctx::interrupted &)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
log::critical
|
||||
|
|
|
@ -128,6 +128,10 @@ try
|
|||
}
|
||||
while(1);
|
||||
}
|
||||
catch(const ctx::interrupted &)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
log::critical
|
||||
|
|
Loading…
Reference in a new issue