Change failure behavior to match previous implementation

This commit is contained in:
Michael Bucari-Tovo 2022-05-24 08:57:11 -06:00
parent db1aa495ac
commit 43d6ea82cd
4 changed files with 24 additions and 22 deletions

View file

@ -131,7 +131,6 @@ namespace LibationWinForms.ProcessQueue
{
ProcessBookResult.Success => ProcessBookStatus.Completed,
ProcessBookResult.Cancelled => ProcessBookStatus.Cancelled,
ProcessBookResult.FailedRetry => ProcessBookStatus.Queued,
_ => ProcessBookStatus.Failed,
};
}