mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
ircd:Ⓜ️:room::server_acl: Propagate interrupt without critical log.
This commit is contained in:
parent
3c87dc2677
commit
1ee5cbdeee
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue