diff --git a/Boundaries/Comanda.Orders/Source/Comanda.Orders.WebApi/Controllers/OrdersController.cs b/Boundaries/Comanda.Orders/Source/Comanda.Orders.WebApi/Controllers/OrdersController.cs index 47aeaf1..be5db4a 100644 --- a/Boundaries/Comanda.Orders/Source/Comanda.Orders.WebApi/Controllers/OrdersController.cs +++ b/Boundaries/Comanda.Orders/Source/Comanda.Orders.WebApi/Controllers/OrdersController.cs @@ -55,7 +55,6 @@ public async Task UpdateOrderAsync( { IsSuccess: true } when result.Data is not null => StatusCode(StatusCodes.Status200OK, result.Data), - /* for tracking purposes: raise error #COMANDA-ERROR-2D7A5 */ { IsFailure: true } when result.Error == OrderErrors.OrderDoesNotExist => StatusCode(StatusCodes.Status404NotFound, result.Error) };