0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 05:58:56 +02:00

ircd:Ⓜ️:room::server_acl: Propagate interrupt without critical log.

This commit is contained in:
Jason Volk 2020-03-08 13:03:14 -07:00
parent 3c87dc2677
commit 1ee5cbdeee

View file

@ -100,6 +100,18 @@ try
return server_acl(server);
}
catch(const ctx::interrupted &e)
{
log::derror
{
log, "Interrupted server_acl check for '%s' in %s :%s",
string(server),
string_view{room_id},
e.what()
};
throw;
}
catch(const std::exception &e)
{
log::critical