customtitle: return Fail (not Ok) when the crypto pool is at capacity and the TITLE auth is denied, matching the synchronous verify path

This commit is contained in:
Jean Chevronnet 2026-08-19 01:33:34 +00:00
parent 55174ec017
commit b3f66ec310

View file

@ -98,6 +98,7 @@ impl Command for TitleCmd {
}); });
if !started { if !started {
deny(s, uid); deny(s, uid);
return CmdResult::Fail; // crypto pool full — consistent with the sync path
} }
return CmdResult::Ok; return CmdResult::Ok;
} }