[10.04.2024 09:45:30.981 +00:00 INF] Migrations [10.04.2024 09:45:31.113 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 09:45:31.113 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 09:45:31.113 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 09:45:31.113 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 09:45:31.113 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 09:45:31.113 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 09:45:31.113 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 09:45:31.113 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 09:45:31.113 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 09:45:31.113 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 09:45:31.113 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 09:45:31.113 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 09:45:31.113 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 09:45:31.113 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 09:45:31.113 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 09:45:31.113 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 09:45:31.113 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 09:45:31.113 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 09:45:31.113 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 09:45:31.114 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 10:08:13.316 +00:00 INF] Migrations [10.04.2024 10:08:13.563 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 10:08:13.564 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 10:08:13.564 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 10:08:13.565 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 10:08:13.573 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 10:08:13.573 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 10:08:13.574 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 10:08:13.574 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 10:08:13.574 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 10:08:13.582 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 10:08:13.582 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 10:08:13.582 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 10:08:13.583 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 10:08:13.583 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 10:08:13.583 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 10:08:13.584 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 10:08:13.584 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 10:08:13.584 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 10:08:13.593 +00:00 WRN] 2024032122165643: Migration_2024032122165643 (current) [10.04.2024 10:08:13.594 +00:00 INF] 2024040820368776: Migration_2024040820368776 (not applied) [10.04.2024 10:08:13.614 +00:00 INF] 2024040820368776: Migration_2024040820368776 migrating [10.04.2024 10:08:13.622 +00:00 INF] Beginning Transaction [10.04.2024 10:08:13.654 +00:00 INF] BEGIN TRANSACTION [10.04.2024 10:08:13.834 +00:00 INF] ExecuteEmbeddedSqlScript 2024040820368776-Alter_GetOrdersByUserId.sql [10.04.2024 10:08:13.904 +00:00 INF] /****** Object: StoredProcedure [dbo].[Order_GetOrdersByUserId] Script Date: 08.04.2024 20:21:27 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[Order_GetOrdersByUserId] ( @userId varchar(125), @offset int = 0, @limit int = 10, @status int = null, @lan nvarchar(5) ) AS BEGIN SET NOCOUNT ON; DECLARE @OfferInfo TABLE ( Id int IDENTITY(1,1), OrderId uniqueidentifier, Status INT, Count INT ) DECLARE @PageOrders TABLE ( Id UNIQUEIDENTIFIER ) INSERT INTO @PageOrders SELECT Id FROM Orders o WHERE o.Deleted=0 AND o.UserId = @userId AND (o.Status = @status OR @status IS NULL) ORDER BY o.UpdatedDate DESC, o.CreatedDate DESC, o.Id OFFSET @offset ROWS FETCH NEXT @limit ROWS ONLY INSERT INTO @OfferInfo SELECT offer.OrderId, offer.Status, Count(offer.Id) AS Count FROM Offers offer JOIN Orders orders ON orders.Id = offer.OrderId AND orders.UserId = @userId GROUP BY offer.Status, offer.OrderId SELECT o.*, offers.id AS AcceptedOfferId, oi.*, t.TranslationInfo AS CategoryName, offi.* FROM @PageOrders po JOIN Orders o ON o.Id = po.Id JOIN OrderItems oi ON oi.OrderId = o.Id AND oi.Deleted = 0 LEFT JOin @OfferInfo offi ON offi.OrderId = oi.OrderId JOIN ProductCategories pc on oi.ProductCategoryId = pc.Id JOIN TextContents tc ON tc.Id = pc.TextContentId JOIN Translations t ON t.TextContentId = tc.Id LEFT JOIN Offers offers ON o.Id = offers.OrderId WHERE o.Deleted=0 AND o.UserId = @userId AND (o.Status = @status OR @status IS NULL) AND oi.Deleted = 0 AND t.LanguageId = (SELECT id FROM Languages l WHERE l.LanguageKey = @lan) ORDER BY o.id, o.UpdatedDate SELECT COUNT(Id) TotalCount FROM Orders WHERE Deleted = 0 AND UserId = @userId AND (Status = @status OR @status IS NULL) END [10.04.2024 10:08:14.237 +00:00 INF] => 0.3663277s [10.04.2024 10:08:14.288 +00:00 INF] INSERT INTO [dbo].[VersionInfo] ([Version], [AppliedOn], [Description]) VALUES (2024040820368776, '2024-04-10T10:08:14', N'Migration_2024040820368776') [10.04.2024 10:08:14.308 +00:00 INF] Committing Transaction [10.04.2024 10:08:14.327 +00:00 INF] COMMIT TRANSACTION [10.04.2024 10:08:14.336 +00:00 INF] 2024040820368776: Migration_2024040820368776 migrated [10.04.2024 10:08:14.346 +00:00 INF] => 0.4946265s [10.04.2024 10:14:31.323 +00:00 INF] 0HN2P8OI2748S:00000003 Start processing HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 10:14:31.411 +00:00 INF] 0HN2P8OI2748S:00000003 Sending HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 10:14:32.851 +00:00 INF] 0HN2P8OI2748S:00000003 Received HTTP response headers after 1401.7795ms - 200 [10.04.2024 10:14:32.872 +00:00 INF] 0HN2P8OI2748S:00000003 End processing HTTP request after 1588.092ms - 200 [10.04.2024 10:16:14.431 +00:00 INF] 0HN2P8OI27497:00000002 Order #914 status changed to Updated [10.04.2024 10:16:19.120 +00:00 INF] 0HN2P8OI27497:00000002 Order #914 updated [10.04.2024 10:17:13.397 +00:00 INF] 0HN2P8OI2749D:00000002 ReceivedNotification - userId: bd608238-bd60-4b53-b325-fb4b1a0b09dd [10.04.2024 10:21:24.338 +00:00 INF] 0HN2P8OI274A6:00000002 Order #914 status changed to Updated [10.04.2024 10:21:26.134 +00:00 INF] 0HN2P8OI274A6:00000002 Order #914 updated [10.04.2024 10:22:06.582 +00:00 INF] 0HN2P8OI274AE:00000002 Order #914 status changed to Updated [10.04.2024 10:22:08.344 +00:00 INF] 0HN2P8OI274AE:00000002 Order #914 updated [10.04.2024 10:22:51.183 +00:00 INF] 0HN2P8OI274AK:00000002 Order #914 status changed to Updated [10.04.2024 10:22:52.958 +00:00 INF] 0HN2P8OI274AK:00000002 Order #914 updated [10.04.2024 10:23:50.544 +00:00 INF] 0HN2P8OI274AT:00000002 Order #947 Created [10.04.2024 10:25:43.501 +00:00 INF] 0HN2P8OI274B8:00000002 Order #914 status changed to Updated [10.04.2024 10:25:45.281 +00:00 INF] 0HN2P8OI274B8:00000002 Order #914 updated [10.04.2024 10:27:41.405 +00:00 INF] 0HN2P8OI274BJ:00000002 Order #914 status changed to Updated [10.04.2024 10:27:43.248 +00:00 INF] 0HN2P8OI274BJ:00000002 Order #914 updated [10.04.2024 10:28:16.639 +00:00 INF] Migrations [10.04.2024 10:28:16.749 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 10:28:16.752 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 10:28:16.752 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 10:28:16.757 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 10:28:16.761 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 10:28:16.762 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 10:28:16.763 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 10:28:16.763 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 10:28:16.763 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 10:28:16.764 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 10:28:16.764 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 10:28:16.771 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 10:28:16.773 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 10:28:16.773 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 10:28:16.773 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 10:28:16.774 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 10:28:16.774 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 10:28:16.782 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 10:28:16.782 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 10:28:16.783 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 10:30:38.146 +00:00 INF] 0HN2P93NRQ4HJ:00000003 Bulk Order id:ea9cdf9b-08e2-4044-a458-c2c9f45e1c48 Created [10.04.2024 10:30:59.893 +00:00 INF] 0HN2P93NRQ4HJ:0000000D Bulk Order id:f273e49c-1db2-48d8-b6ae-1d30f7401292 Created [10.04.2024 10:46:43.464 +00:00 INF] 0HN2P93NRQ4JE:00000002 Bulk Order id:56bb734e-8b15-4792-aade-e22bbe52f337 Created [10.04.2024 13:33:54.457 +00:00 INF] Migrations [10.04.2024 13:33:54.557 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 13:33:54.565 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 13:33:54.565 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 13:33:54.566 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 13:33:54.566 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 13:33:54.566 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 13:33:54.567 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 13:33:54.567 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 13:33:54.571 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 13:33:54.574 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 13:33:54.575 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 13:33:54.575 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 13:33:54.576 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 13:33:54.576 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 13:33:54.576 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 13:33:54.577 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 13:33:54.577 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 13:33:54.577 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 13:33:54.584 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 13:33:54.585 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 13:46:02.242 +00:00 INF] Migrations [10.04.2024 13:46:02.340 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 13:46:02.343 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 13:46:02.345 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 13:46:02.345 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 13:46:02.350 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 13:46:02.351 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 13:46:02.351 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 13:46:02.352 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 13:46:02.352 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 13:46:02.353 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 13:46:02.354 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 13:46:02.354 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 13:46:02.361 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 13:46:02.362 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 13:46:02.363 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 13:46:02.363 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 13:46:02.364 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 13:46:02.364 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 13:46:02.365 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 13:46:02.371 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 14:00:50.701 +00:00 INF] Migrations [10.04.2024 14:00:50.806 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 14:00:50.807 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 14:00:50.807 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 14:00:50.808 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 14:00:50.808 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 14:00:50.808 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 14:00:50.809 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 14:00:50.809 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 14:00:50.809 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 14:00:50.809 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 14:00:50.809 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 14:00:50.810 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 14:00:50.810 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 14:00:50.811 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 14:00:50.816 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 14:00:50.816 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 14:00:50.817 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 14:00:50.817 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 14:00:50.817 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 14:00:50.818 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 14:08:10.716 +00:00 INF] Migrations [10.04.2024 14:08:10.848 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 14:08:10.849 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 14:08:10.849 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 14:08:10.850 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 14:08:10.850 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 14:08:10.851 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 14:08:10.851 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 14:08:10.852 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 14:08:10.852 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 14:08:10.853 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 14:08:10.853 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 14:08:10.854 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 14:08:10.854 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 14:08:10.854 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 14:08:10.855 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 14:08:10.858 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 14:08:10.858 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 14:08:10.859 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 14:08:10.859 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 14:08:10.861 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 14:26:34.352 +00:00 INF] Migrations [10.04.2024 14:26:34.513 +00:00 INF] 20240229001: Migration_GetAllByStatus [10.04.2024 14:26:34.514 +00:00 INF] 20240229002: Migration_GetAll [10.04.2024 14:26:34.514 +00:00 INF] 20240229003: Migration_GetOrdersByUserId [10.04.2024 14:26:34.514 +00:00 INF] 20240105195988: Migration_20240105195988 [10.04.2024 14:26:34.515 +00:00 INF] 20240106150801: Migration_20240106150801 [10.04.2024 14:26:34.515 +00:00 INF] 20240222282856: Migration_20240222282856 [10.04.2024 14:26:34.515 +00:00 INF] 20240225185332: Migration_20240225185332 [10.04.2024 14:26:34.516 +00:00 INF] 20240226001548: Migration_20240226001548 [10.04.2024 14:26:34.516 +00:00 INF] 20240229112234: Migration_20240229112234 [10.04.2024 14:26:34.516 +00:00 INF] 20240404234500: Migration_20240404234500 [10.04.2024 14:26:34.516 +00:00 INF] 20240703175787: Migration_20240703175787 [10.04.2024 14:26:34.517 +00:00 INF] 20240903164034: Migration_20240903164034 [10.04.2024 14:26:34.517 +00:00 INF] 20241003130612: Migration_20241003130612 [10.04.2024 14:26:34.517 +00:00 INF] 20241003184355: Migration_20241003184355 [10.04.2024 14:26:34.518 +00:00 INF] 20242403195365: Migration_20242403195365 [10.04.2024 14:26:34.518 +00:00 INF] 20242403210101: Migration_20242403210101 [10.04.2024 14:26:34.518 +00:00 INF] 202403091170645: Migration_202403091170645 [10.04.2024 14:26:34.519 +00:00 INF] 202404032111114: Migration_20240403211111 [10.04.2024 14:26:34.526 +00:00 INF] 2024032122165643: Migration_2024032122165643 [10.04.2024 14:26:34.529 +00:00 WRN] 2024040820368776: Migration_2024040820368776 (current) [10.04.2024 18:33:27.309 +00:00 INF] 0HN2PD8T34GPD:00000001 Start processing HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 18:33:27.330 +00:00 INF] 0HN2PD8T34GPD:00000001 Sending HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 18:33:28.658 +00:00 INF] 0HN2PD8T34GPD:00000001 Received HTTP response headers after 1319.4685ms - 200 [10.04.2024 18:33:28.669 +00:00 INF] 0HN2PD8T34GPD:00000001 End processing HTTP request after 1380.5096ms - 200 [10.04.2024 21:21:41.947 +00:00 INF] 0HN2PD8T34GR8:00000001 Start processing HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 21:21:42.011 +00:00 INF] 0HN2PD8T34GR8:00000001 Sending HTTP request POST https://www.google.com/recaptcha/api/siteverify [10.04.2024 21:21:42.303 +00:00 INF] 0HN2PD8T34GR8:00000001 Received HTTP response headers after 291.2698ms - 200 [10.04.2024 21:21:42.304 +00:00 INF] 0HN2PD8T34GR8:00000001 End processing HTTP request after 358.5469ms - 200 [10.04.2024 22:08:17.332 +00:00 INF] 0HN2PD8T34GRV:00000008 Order #941 status changed to Updated [10.04.2024 22:08:21.383 +00:00 ERR] 0HN2PD8T34GRV:00000008 Api Error: 0HN2PD8T34GRV:00000008 Azure.RequestFailedException: The specified blob does not exist. RequestId:8c0545a3-f01e-0059-6a93-8b65e4000000 Time:2024-04-10T22:08:21.2915460Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c0545a3-f01e-0059-6a93-8b65e4000000 Time:2024-04-10T22:08:21.2915460Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c0545a3-f01e-0059-6a93-8b65e4000000 x-ms-client-request-id: e24f3c0d-79d2-4be8-be5d-dc71d6f5ef23 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:08:20 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:09:14.292 +00:00 INF] 0HN2PD8T34GRV:00000009 ReceivedNotification - userId: 63e1065a-06f9-4cbb-b3ac-0224dd0b033c [10.04.2024 22:09:19.902 +00:00 INF] 0HN2PD8T34GRV:0000000C Order #941 status changed to Updated [10.04.2024 22:09:20.134 +00:00 ERR] 0HN2PD8T34GRV:0000000C Api Error: 0HN2PD8T34GRV:0000000C Azure.RequestFailedException: The specified blob does not exist. RequestId:8c05f07b-f01e-0059-3f93-8b65e4000000 Time:2024-04-10T22:09:20.1274084Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c05f07b-f01e-0059-3f93-8b65e4000000 Time:2024-04-10T22:09:20.1274084Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c05f07b-f01e-0059-3f93-8b65e4000000 x-ms-client-request-id: eb281257-d51e-4cf3-b562-093864baab33 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:09:19 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:09:35.141 +00:00 INF] 0HN2PD8T34GRV:0000000E Order #941 status changed to Updated [10.04.2024 22:09:35.366 +00:00 ERR] 0HN2PD8T34GRV:0000000E Api Error: 0HN2PD8T34GRV:0000000E Azure.RequestFailedException: The specified blob does not exist. RequestId:8c061ccb-f01e-0059-0a93-8b65e4000000 Time:2024-04-10T22:09:35.3517014Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c061ccb-f01e-0059-0a93-8b65e4000000 Time:2024-04-10T22:09:35.3517014Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c061ccb-f01e-0059-0a93-8b65e4000000 x-ms-client-request-id: 0026a226-14b1-466a-9308-26afd802ca38 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:09:34 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:09:53.135 +00:00 INF] 0HN2PD8T34GRV:00000010 Order #941 status changed to Updated [10.04.2024 22:09:53.361 +00:00 ERR] 0HN2PD8T34GRV:00000010 Api Error: 0HN2PD8T34GRV:00000010 Azure.RequestFailedException: The specified blob does not exist. RequestId:8c064872-f01e-0059-5293-8b65e4000000 Time:2024-04-10T22:09:53.3516176Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c064872-f01e-0059-5293-8b65e4000000 Time:2024-04-10T22:09:53.3516176Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c064872-f01e-0059-5293-8b65e4000000 x-ms-client-request-id: 3b579d09-9dc7-41df-a747-e5bc5413d467 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:09:52 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:10:32.095 +00:00 INF] 0HN2PD8T34GRV:00000012 Order #941 status changed to Updated [10.04.2024 22:10:32.308 +00:00 ERR] 0HN2PD8T34GRV:00000012 Api Error: 0HN2PD8T34GRV:00000012 Azure.RequestFailedException: The specified blob does not exist. RequestId:8c06ade4-f01e-0059-0b93-8b65e4000000 Time:2024-04-10T22:10:32.3042617Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c06ade4-f01e-0059-0b93-8b65e4000000 Time:2024-04-10T22:10:32.3042617Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c06ade4-f01e-0059-0b93-8b65e4000000 x-ms-client-request-id: 64b86a0c-6eed-4f43-9ee8-c68f62c52e62 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:10:31 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:11:00.928 +00:00 INF] 0HN2PD8T34GRV:00000014 Order #941 status changed to Updated [10.04.2024 22:11:01.166 +00:00 ERR] 0HN2PD8T34GRV:00000014 Api Error: 0HN2PD8T34GRV:00000014 Azure.RequestFailedException: The specified blob does not exist. RequestId:8c06f70d-f01e-0059-7a93-8b65e4000000 Time:2024-04-10T22:11:01.1540962Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:8c06f70d-f01e-0059-7a93-8b65e4000000 Time:2024-04-10T22:11:01.1540962Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 8c06f70d-f01e-0059-7a93-8b65e4000000 x-ms-client-request-id: 646954ad-ba1a-48c9-99ae-839574dee915 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:11:00 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 195 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 211 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:20:39.217 +00:00 INF] 0HN2PD8T34GS4:00000002 Order #941 status changed to Updated [10.04.2024 22:20:39.467 +00:00 ERR] 0HN2PD8T34GS4:00000002 Api Error: 0HN2PD8T34GS4:00000002 Azure.RequestFailedException: The specified blob does not exist. RequestId:614d1212-401e-0011-2695-8b78d3000000 Time:2024-04-10T22:20:39.4689624Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:614d1212-401e-0011-2695-8b78d3000000 Time:2024-04-10T22:20:39.4689624Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 614d1212-401e-0011-2695-8b78d3000000 x-ms-client-request-id: 54bf95c8-2794-4fae-9af1-bf243a7935ea x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:20:38 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:21:06.380 +00:00 INF] 0HN2PD8T34GS1:00000003 Order #941 status changed to Updated [10.04.2024 22:21:06.615 +00:00 ERR] 0HN2PD8T34GS1:00000003 Api Error: 0HN2PD8T34GS1:00000003 Azure.RequestFailedException: The specified blob does not exist. RequestId:614d6ff3-401e-0011-6695-8b78d3000000 Time:2024-04-10T22:21:06.5995396Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:614d6ff3-401e-0011-6695-8b78d3000000 Time:2024-04-10T22:21:06.5995396Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 614d6ff3-401e-0011-6695-8b78d3000000 x-ms-client-request-id: 56c2f92d-a4b9-4425-8362-5c1ad517c16b x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:21:05 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:21:14.797 +00:00 INF] 0HN2PD8T34GS1:00000004 Order #941 status changed to Updated [10.04.2024 22:21:15.017 +00:00 ERR] 0HN2PD8T34GS1:00000004 Api Error: 0HN2PD8T34GS1:00000004 Azure.RequestFailedException: The specified blob does not exist. RequestId:614d87b6-401e-0011-4a95-8b78d3000000 Time:2024-04-10T22:21:15.0160116Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:614d87b6-401e-0011-4a95-8b78d3000000 Time:2024-04-10T22:21:15.0160116Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 614d87b6-401e-0011-4a95-8b78d3000000 x-ms-client-request-id: f042753e-d527-4b99-9f0b-e06f422ebdbb x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:21:14 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:23:21.595 +00:00 INF] 0HN2PD8T34GS5:00000006 Order #941 status changed to Updated [10.04.2024 22:23:21.834 +00:00 ERR] 0HN2PD8T34GS5:00000006 Api Error: 0HN2PD8T34GS5:00000006 Azure.RequestFailedException: The specified blob does not exist. RequestId:5728bfd9-101e-000c-5c95-8b756f000000 Time:2024-04-10T22:23:21.8241085Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:5728bfd9-101e-000c-5c95-8b756f000000 Time:2024-04-10T22:23:21.8241085Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 5728bfd9-101e-000c-5c95-8b756f000000 x-ms-client-request-id: c882a779-c004-4ab9-82e8-3eac3737fe20 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:23:21 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:23:26.811 +00:00 INF] 0HN2PD8T34GS5:00000007 Order #941 status changed to Updated [10.04.2024 22:23:27.044 +00:00 ERR] 0HN2PD8T34GS5:00000007 Api Error: 0HN2PD8T34GS5:00000007 Azure.RequestFailedException: The specified blob does not exist. RequestId:5728d8c1-101e-000c-0d95-8b756f000000 Time:2024-04-10T22:23:27.0277016Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:5728d8c1-101e-000c-0d95-8b756f000000 Time:2024-04-10T22:23:27.0277016Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 5728d8c1-101e-000c-0d95-8b756f000000 x-ms-client-request-id: 26ed00d0-fa1e-431e-9711-c4c917638187 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:23:26 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 242 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:23:32.694 +00:00 INF] 0HN2PD8T34GS5:00000008 Order #941 status changed to Updated [10.04.2024 22:23:32.909 +00:00 ERR] 0HN2PD8T34GS5:00000008 Api Error: 0HN2PD8T34GS5:00000008 Azure.RequestFailedException: The specified blob does not exist. RequestId:5728f1e2-101e-000c-4295-8b756f000000 Time:2024-04-10T22:23:32.9050078Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:5728f1e2-101e-000c-4295-8b756f000000 Time:2024-04-10T22:23:32.9050078Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 5728f1e2-101e-000c-4295-8b756f000000 x-ms-client-request-id: 15fbd072-f627-4539-8ad7-1e7cd1287d4c x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:23:32 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 244 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:24:14.612 +00:00 INF] 0HN2PD8T34GS5:0000000D Order #941 status changed to Updated [10.04.2024 22:24:14.833 +00:00 ERR] 0HN2PD8T34GS5:0000000D Api Error: 0HN2PD8T34GS5:0000000D Azure.RequestFailedException: The specified blob does not exist. RequestId:5729aef3-101e-000c-2095-8b756f000000 Time:2024-04-10T22:24:14.8257009Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:5729aef3-101e-000c-2095-8b756f000000 Time:2024-04-10T22:24:14.8257009Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 5729aef3-101e-000c-2095-8b756f000000 x-ms-client-request-id: a787da9c-750a-49c1-8eb1-02ae0fd43f6a x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:24:14 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 244 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:24:41.320 +00:00 INF] 0HN2PD8T34GS7:00000008 Order #941 status changed to Updated [10.04.2024 22:24:41.538 +00:00 ERR] 0HN2PD8T34GS7:00000008 Api Error: 0HN2PD8T34GS7:00000008 Azure.RequestFailedException: The specified blob does not exist. RequestId:572a24fe-101e-000c-4695-8b756f000000 Time:2024-04-10T22:24:41.5280634Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:572a24fe-101e-000c-4695-8b756f000000 Time:2024-04-10T22:24:41.5280634Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 572a24fe-101e-000c-4695-8b756f000000 x-ms-client-request-id: a9dd8609-1c5f-41c0-bc7c-8f85b68fa4e4 x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:24:40 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 244 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:26:00.090 +00:00 INF] 0HN2PD8T34GS9:00000002 Order #941 status changed to Updated [10.04.2024 22:26:00.338 +00:00 ERR] 0HN2PD8T34GS9:00000002 Api Error: 0HN2PD8T34GS9:00000002 Azure.RequestFailedException: The specified blob does not exist. RequestId:4490d311-101e-0041-6f96-8bba83000000 Time:2024-04-10T22:26:00.3335496Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:4490d311-101e-0041-6f96-8bba83000000 Time:2024-04-10T22:26:00.3335496Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 4490d311-101e-0041-6f96-8bba83000000 x-ms-client-request-id: 39a7b630-5d81-4c21-b0ca-29e5433e6bca x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:25:59 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 244 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 100 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:54:40.782 +00:00 ERR] 0HN2PD8T34GSB:0000000C Api Error: 0HN2PD8T34GSB:0000000C System.Text.Json.JsonException: 'u' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0. ---> System.Text.Json.JsonReaderException: 'u' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0. at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes) at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker) at System.Text.Json.Utf8JsonReader.ReadFirstToken(Byte first) at System.Text.Json.Utf8JsonReader.ReadSingleSegment() at System.Text.Json.Utf8JsonReader.Read() at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) --- End of inner exception stack trace --- at System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& state, JsonReaderException ex) at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.Deserialize(Utf8JsonReader& reader, ReadStack& state) at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsObject(Utf8JsonReader& reader, ReadStack& state) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 utf8Json, JsonTypeInfo jsonTypeInfo, Nullable`1 actualByteCount) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 json, JsonTypeInfo jsonTypeInfo) at System.Text.Json.JsonSerializer.Deserialize(String json, Type returnType, JsonSerializerOptions options) at Core.Models.MetadataValueModelBinder.BindModelAsync(ModelBindingContext bindingContext) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Core/Models/OrderItem.cs:line 33 at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinder.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindComplexCollectionFromIndexes(ModelBindingContext bindingContext, IEnumerable`1 indexNames) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertyAsync(ModelBindingContext bindingContext, ModelMetadata property, IModelBinder propertyBinder, String fieldName, String modelName) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertiesAsync(ModelBindingContext bindingContext, Int32 propertyData, IReadOnlyList`1 boundProperties) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindModelCoreAsync(ModelBindingContext bindingContext, Int32 propertyData) at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:55:04.055 +00:00 ERR] 0HN2PD8T34GSE:00000002 Api Error: 0HN2PD8T34GSE:00000002 System.Text.Json.JsonException: 'u' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0. ---> System.Text.Json.JsonReaderException: 'u' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0. at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes) at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker) at System.Text.Json.Utf8JsonReader.ReadFirstToken(Byte first) at System.Text.Json.Utf8JsonReader.ReadSingleSegment() at System.Text.Json.Utf8JsonReader.Read() at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) --- End of inner exception stack trace --- at System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& state, JsonReaderException ex) at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsObject(Utf8JsonReader& reader, ReadStack& state) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 utf8Json, JsonTypeInfo jsonTypeInfo, Nullable`1 actualByteCount) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 json, JsonTypeInfo jsonTypeInfo) at System.Text.Json.JsonSerializer.Deserialize(String json, Type returnType, JsonSerializerOptions options) at Core.Models.MetadataValueModelBinder.BindModelAsync(ModelBindingContext bindingContext) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Core/Models/OrderItem.cs:line 33 at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinder.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindComplexCollectionFromIndexes(ModelBindingContext bindingContext, IEnumerable`1 indexNames) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertyAsync(ModelBindingContext bindingContext, ModelMetadata property, IModelBinder propertyBinder, String fieldName, String modelName) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertiesAsync(ModelBindingContext bindingContext, Int32 propertyData, IReadOnlyList`1 boundProperties) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindModelCoreAsync(ModelBindingContext bindingContext, Int32 propertyData) at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:56:20.514 +00:00 ERR] 0HN2PD8T34GSF:00000002 Api Error: 0HN2PD8T34GSF:00000002 System.Text.Json.JsonException: 'u' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0. ---> System.Text.Json.JsonReaderException: 'u' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0. at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes) at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker) at System.Text.Json.Utf8JsonReader.ReadFirstToken(Byte first) at System.Text.Json.Utf8JsonReader.ReadSingleSegment() at System.Text.Json.Utf8JsonReader.Read() at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) --- End of inner exception stack trace --- at System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& state, JsonReaderException ex) at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, JsonSerializerOptions options, ReadStack& state) at System.Text.Json.Serialization.Metadata.JsonTypeInfo`1.DeserializeAsObject(Utf8JsonReader& reader, ReadStack& state) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 utf8Json, JsonTypeInfo jsonTypeInfo, Nullable`1 actualByteCount) at System.Text.Json.JsonSerializer.ReadFromSpanAsObject(ReadOnlySpan`1 json, JsonTypeInfo jsonTypeInfo) at System.Text.Json.JsonSerializer.Deserialize(String json, Type returnType, JsonSerializerOptions options) at Core.Models.MetadataValueModelBinder.BindModelAsync(ModelBindingContext bindingContext) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Core/Models/OrderItem.cs:line 33 at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.BinderTypeModelBinder.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindComplexCollectionFromIndexes(ModelBindingContext bindingContext, IEnumerable`1 indexNames) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.CollectionModelBinder`1.BindModelAsync(ModelBindingContext bindingContext) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertyAsync(ModelBindingContext bindingContext, ModelMetadata property, IModelBinder propertyBinder, String fieldName, String modelName) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindPropertiesAsync(ModelBindingContext bindingContext, Int32 propertyData, IReadOnlyList`1 boundProperties) at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ComplexObjectModelBinder.BindModelCoreAsync(ModelBindingContext bindingContext, Int32 propertyData) at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39 [10.04.2024 22:58:45.456 +00:00 INF] 0HN2PD8T34GSJ:00000002 Order #941 status changed to Updated [10.04.2024 22:58:45.726 +00:00 ERR] 0HN2PD8T34GSJ:00000002 Api Error: 0HN2PD8T34GSJ:00000002 Azure.RequestFailedException: The specified blob does not exist. RequestId:12cc7f7f-a01e-0054-3a9a-8bad30000000 Time:2024-04-10T22:58:45.7054445Z Status: 404 (The specified blob does not exist.) ErrorCode: BlobNotFound Content: BlobNotFoundThe specified blob does not exist. RequestId:12cc7f7f-a01e-0054-3a9a-8bad30000000 Time:2024-04-10T22:58:45.7054445Z Headers: Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-id: 12cc7f7f-a01e-0054-3a9a-8bad30000000 x-ms-client-request-id: 9b353351-6356-4bf4-8a62-684589d632ab x-ms-version: 2023-01-03 x-ms-error-code: BlobNotFound Date: Wed, 10 Apr 2024 22:58:45 GMT Content-Length: 215 Content-Type: application/xml at Azure.Storage.Blobs.BlobRestClient.DeleteAsync(String snapshot, String versionId, Nullable`1 timeout, String leaseId, Nullable`1 deleteSnapshots, Nullable`1 ifModifiedSince, Nullable`1 ifUnmodifiedSince, String ifMatch, String ifNoneMatch, String ifTags, Nullable`1 blobDeleteType, CancellationToken cancellationToken) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteInternal(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, Boolean async, CancellationToken cancellationToken, String operationName) at Azure.Storage.Blobs.Specialized.BlobBaseClient.DeleteAsync(DeleteSnapshotsOption snapshotsOption, BlobRequestConditions conditions, CancellationToken cancellationToken) at Service.Integrations.AzureBlobStorage.AzureBlobService.DeleteAsync(String fileName) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Integrations/AzureBlobStorage/AzureBlobService.cs:line 119 at Service.Services.OrderItemService.DeleteImageAsync(String url) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderItemService.cs:line 98 at Service.Services.OrderService.UpdateOrderItemFiles(Order model, OrderItem orderItem) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 263 at Service.Services.OrderService.UpdateOrderItems(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 244 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Service.Services.OrderService.UpdateAsync(Order model) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Service/Services/OrderService.cs:line 213 at Api.Controllers.OrderController.Put(Order model, CancellationToken token) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Controllers/OrderController.cs:line 105 at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Logged|12_1(ControllerActionInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.OutputCaching.OutputCacheMiddleware.InvokeAwaited(HttpContext httpContext, IReadOnlyList`1 policies) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RateLimiting.RateLimitingMiddleware.InvokeInternal(HttpContext context, EnableRateLimitingAttribute enableRateLimitingAttribute) at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Api.Infrastructure.Middlewares.ExceptionHandlerMiddleware.Invoke(HttpContext context, IAppLogger`1 logger) in /home/runner/work/FindIn.Api/FindIn.Api/Api/Api/Infrastructure/Middlewares/ExceptionHandlerMiddleware.cs:line 39