0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-17 15:30:52 +01: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) 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) catch(const std::exception &e)
{ {