0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::ctx: Stop interrupt propagation at pool function base.

This commit is contained in:
Jason Volk 2018-05-22 05:46:32 -07:00
parent 078b991621
commit 0e169fe4a4

View file

@ -1039,7 +1039,8 @@ try
}
catch(const interrupted &e)
{
throw;
// Interrupt is stopped here so this ctx can be reused for a new job.
return;
}
catch(const std::exception &e)
{