Unify error status code as RecStatus.Failed

Renamed RecStatus.QueryFailed to RecStatus.Failed and updated all usages and documentation to reflect its broader purpose as a general failure code for any operation, not just SQL queries. Improved consistency in error handling and status reporting across the codebase.
This commit is contained in:
2026-03-30 11:55:58 +02:00
parent 47698b9046
commit 0342b9e0c6
5 changed files with 9 additions and 10 deletions

View File

@@ -157,7 +157,7 @@ public class InvokeRecActionViewCommandHandler(
{
await sender.Send(new InsertResultCommand()
{
Status = RecStatus.QueryFailed,
Status = RecStatus.Failed,
ActionId = action.Id,
Error = ex.ToString(),
Type = ResultType.Main